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.

ReductionCartFactory.php 532B

3 vuotta sitten
3 vuotta sitten
3 vuotta sitten
3 vuotta sitten
3 vuotta sitten
3 vuotta sitten
3 vuotta sitten
3 vuotta sitten
3 vuotta sitten
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. }