選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

ReductionCreditFactory.php 650B

3年前
3年前
3年前
3年前
3年前
3年前
123456789101112131415161718192021222324
  1. <?php
  2. namespace Lc\CaracoleBundle\Factory\Reduction;
  3. use App\Entity\Reduction\ReductionCredit;
  4. use Lc\CaracoleBundle\Factory\MerchantFactoryTrait;
  5. use Lc\CaracoleBundle\Model\Merchant\MerchantInterface;
  6. use Lc\CaracoleBundle\Model\Reduction\ReductionCreditInterface;
  7. use Lc\CaracoleBundle\Model\Section\SectionInterface;
  8. use Lc\SovBundle\Factory\AbstractFactory;
  9. class ReductionCreditFactory extends AbstractFactory
  10. {
  11. public function create(SectionInterface $section): ReductionCreditInterface
  12. {
  13. $reductionCredit = new ReductionCredit();
  14. $reductionCredit->setSection($section);
  15. return $reductionCredit;
  16. }
  17. }