Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

ReminderFactory.php 661B

il y a 3 ans
il y a 3 ans
il y a 3 ans
il y a 3 ans
il y a 3 ans
il y a 3 ans
il y a 3 ans
12345678910111213141516171819202122232425
  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(
  9. string $crudAction = null,
  10. string $crudControllerFqcn = null,
  11. int $entityId = null
  12. ): ReminderInterface {
  13. $reminder = new Reminder();
  14. $reminder->setCrudAction($crudAction);
  15. $reminder->setCrudControllerFqcn($crudControllerFqcn);
  16. $reminder->setEntityId($entityId);
  17. return $reminder;
  18. }
  19. }