Explorar el Código

Refactoring services

develop
Guillaume hace 3 años
padre
commit
8e6aece552
Se han modificado 1 ficheros con 5 adiciones y 2 borrados
  1. +5
    -2
      Factory/Reminder/ReminderFactory.php

+ 5
- 2
Factory/Reminder/ReminderFactory.php Ver fichero

@@ -8,8 +8,11 @@ use Lc\SovBundle\Model\Reminder\ReminderInterface;

class ReminderFactory extends AbstractFactory implements ReminderFactoryInterface
{
public function create(string $crudAction = null, string $crudControllerFqcn = null, int $entityId = null): ReminderInterface
{
public function create(
string $crudAction = null,
string $crudControllerFqcn = null,
int $entityId = null
): ReminderInterface {
$reminder = new Reminder();

$reminder->setCrudAction($crudAction);

Cargando…
Cancelar
Guardar