Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

26 lines
685B

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