Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

22 Zeilen
603B

  1. <?php
  2. namespace Lc\CaracoleBundle\Model\Product;
  3. use App\Entity\Product\ProductFamily;
  4. use App\Entity\Section\Section;
  5. interface ProductFamilySectionPropertyInterface
  6. {
  7. public function getSection(): ?Section;
  8. public function setSection(?Section $section): ProductFamilySectionPropertyInterface;
  9. public function getProductFamily(): ?ProductFamily;
  10. public function setProductFamily(?ProductFamily $productFamily): ProductFamilySectionPropertyInterface;
  11. public function getStatus(): ?float;
  12. public function setStatus(float $status): ProductFamilySectionPropertyInterface;
  13. }