Quellcode durchsuchen

ProductFamilyModel : initProducts()

develop
Guillaume vor 1 Jahr
Ursprung
Commit
0b14452c57
1 geänderte Dateien mit 6 neuen und 1 gelöschten Zeilen
  1. +6
    -1
      Model/Product/ProductFamilyModel.php

+ 6
- 1
Model/Product/ProductFamilyModel.php Datei anzeigen

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

Laden…
Abbrechen
Speichern