Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

24 lines
597B

  1. <?php
  2. namespace Lc\CaracoleBundle\Factory\Reduction;
  3. use App\Entity\Reduction\ReductionCatalog;
  4. use Lc\CaracoleBundle\Model\Merchant\MerchantInterface;
  5. use Lc\CaracoleBundle\Model\Reduction\ReductionCatalogInterface;
  6. use Lc\SovBundle\Factory\AbstractFactory;
  7. class ReductionCatalogFactory extends AbstractFactory
  8. {
  9. public function create(MerchantInterface $merchant): ReductionCatalogInterface
  10. {
  11. $reductionCatalog = new ReductionCatalog();
  12. $reductionCatalog->setMerchant($merchant);
  13. $reductionCatalog->setStatus(1);
  14. return $reductionCatalog;
  15. }
  16. }