|
- <?php
-
- namespace Lc\SovBundle\Factory\Reminder;
-
- use Lc\SovBundle\Model\Reminder\ReminderInterface;
-
- interface ReminderFactoryInterface
- {
- public function create(
- string $crudAction = null,
- string $crudControllerFqcn = null,
- int $entityId = null
- ): ReminderInterface;
- }
|