瀏覽代碼

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()

Loading…
取消
儲存