Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

26 lines
745B

  1. <?php
  2. namespace Lc\CaracoleBundle\Factory\Reminder;
  3. use Lc\CaracoleBundle\Factory\MerchantFactoryTrait;
  4. use Lc\CaracoleBundle\Factory\SectionFactoryTrait;
  5. use Lc\SovBundle\Factory\Reminder\ReminderFactory as SovReminderFactory;
  6. use Lc\SovBundle\Model\Reminder\ReminderInterface;
  7. class ReminderFactory extends SovReminderFactory
  8. {
  9. use MerchantFactoryTrait;
  10. use SectionFactoryTrait;
  11. public function create(string $crudAction = null, string $crudControllerFqcn = null, int $entityId = null): ReminderInterface
  12. {
  13. $reminder = parent::create($crudAction, $crudControllerFqcn, $entityId);
  14. $reminder->setMerchant($this->merchant) ;
  15. $reminder->setSection($this->section) ;
  16. return $reminder;
  17. }
  18. }