You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- <?php
-
- namespace Lc\CaracoleBundle\Model\Product;
-
-
- use App\Entity\Product\ProductFamily;
- use App\Entity\Section\Section;
-
- interface ProductFamilySectionPropertyInterface
- {
- public function getSection(): ?Section;
-
- public function setSection(?Section $section): ProductFamilySectionPropertyInterface;
-
- public function getProductFamily(): ?ProductFamily;
-
- public function setProductFamily(?ProductFamily $productFamily): ProductFamilySectionPropertyInterface;
-
- public function getStatus(): ?float;
-
- public function setStatus(float $status): ProductFamilySectionPropertyInterface;
- }
|