Nie możesz wybrać więcej, niż 25 tematów
Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
|
- <?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;
- }
|