getAttributes() public method

public getAttributes ( ) : array
return array
コード例 #1
0
ファイル: ProductContext.php プロジェクト: sylius/sylius
 /**
  * @return NodeElement[]
  *
  * @throws \InvalidArgumentException
  */
 private function getProductAttributes()
 {
     $attributes = $this->showPage->getAttributes();
     Assert::notNull($attributes, 'The product has no attributes.');
     return $attributes;
 }