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.

ProductFamilySectionPropertyInterface.php 603B

пре 2 година
пре 2 година
пре 2 година
12345678910111213141516171819202122
  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. }