Вы не можете выбрать более 25 тем
Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
|
- <?php
-
- namespace Lc\CaracoleBundle\Factory\Reduction;
-
- use App\Entity\Reduction\ReductionCart;
- use Lc\CaracoleBundle\Model\Merchant\MerchantInterface;
- use Lc\CaracoleBundle\Model\Reduction\ReductionCartInterface;
- use Lc\SovBundle\Factory\AbstractFactory;
-
- class ReductionCartFactory extends AbstractFactory
- {
-
- public function create(MerchantInterface $merchant): ReductionCartInterface
- {
- $reductionCart = new ReductionCart();
-
- $reductionCart->setMerchant($merchant);
-
- return $reductionCart;
- }
-
- }
|