コード例 #1
0
ファイル: Product.php プロジェクト: sidibea/Sylius
 /**
  * Constructor.
  */
 public function __construct()
 {
     parent::__construct();
     $this->taxons = new ArrayCollection();
     $this->channels = new ArrayCollection();
     $this->variantSelectionMethod = self::VARIANT_SELECTION_CHOICE;
 }
コード例 #2
0
ファイル: Product.php プロジェクト: bcremer/Sylius
 /**
  * Constructor.
  */
 public function __construct()
 {
     parent::__construct();
     $this->setMasterVariant(new ProductVariant());
     $this->taxons = new ArrayCollection();
     $this->variantSelectionMethod = self::VARIANT_SELECTION_CHOICE;
 }