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.

25 lines
653B

  1. <?php
  2. namespace Lc\CaracoleBundle\Factory\Product;
  3. use App\Entity\Product\ProductFamily;
  4. use Lc\CaracoleBundle\Model\Merchant\MerchantInterface;
  5. use Lc\CaracoleBundle\Model\Product\ProductFamilyInterface;
  6. use Lc\CaracoleBundle\Model\Section\SectionInterface;
  7. use Lc\SovBundle\Factory\AbstractFactory;
  8. class ProductFamilyFactory extends AbstractFactory
  9. {
  10. public function create(MerchantInterface $merchant, SectionInterface $section): ProductFamilyInterface
  11. {
  12. $productFamily = new ProductFamily();
  13. $productFamily->setMerchant($merchant);
  14. $productFamily->setSection($section);
  15. return $productFamily;
  16. }
  17. }