您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

ReminderFactory.php 623B

3 年前
3 年前
3 年前
3 年前
3 年前
3 年前
3 年前
12345678910111213141516171819202122
  1. <?php
  2. namespace Lc\SovBundle\Factory\Reminder;
  3. use App\Entity\Reminder\Reminder;
  4. use Lc\SovBundle\Factory\AbstractFactory;
  5. use Lc\SovBundle\Model\Reminder\ReminderInterface;
  6. class ReminderFactory extends AbstractFactory implements ReminderFactoryInterface
  7. {
  8. public function create(string $crudAction = null, string $crudControllerFqcn = null, int $entityId = null): ReminderInterface
  9. {
  10. $reminder = new Reminder();
  11. $reminder->setCrudAction($crudAction);
  12. $reminder->setCrudControllerFqcn($crudControllerFqcn);
  13. $reminder->setEntityId($entityId);
  14. return $reminder;
  15. }
  16. }