Browse Source

ProductFamilyModel : initProducts()

develop
Guillaume 1 year ago
parent
commit
0b14452c57
1 changed files with 6 additions and 1 deletions
  1. +6
    -1
      Model/Product/ProductFamilyModel.php

+ 6
- 1
Model/Product/ProductFamilyModel.php View File

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

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


public function __toString() public function __toString()

Loading…
Cancel
Save