Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

ReductionCartFactory.php 532B

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