ソースを参照

ProductFamilyModel : initProducts()

develop
Guillaume 1年前
コミット
0b14452c57
1個のファイルの変更6行の追加1行の削除
  1. +6
    -1
      Model/Product/ProductFamilyModel.php

+ 6
- 1
Model/Product/ProductFamilyModel.php ファイルの表示

@@ -263,8 +263,13 @@ abstract class ProductFamilyModel extends AbstractFullEntity implements ProductP
public function __construct()
{
$this->productCategories = new ArrayCollection();
$this->products = new ArrayCollection();
$this->qualityLabels = new ArrayCollection();
$this->initProducts();
}

public function initProducts()
{
$this->products = new ArrayCollection();
}

public function __toString()

読み込み中…
キャンセル
保存