소스 검색

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…
취소
저장