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