You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ReminderFactoryInterface.php 301B

3 년 전
3 년 전
3 년 전
1234567891011121314
  1. <?php
  2. namespace Lc\SovBundle\Factory\Reminder;
  3. use Lc\SovBundle\Model\Reminder\ReminderInterface;
  4. interface ReminderFactoryInterface
  5. {
  6. public function create(
  7. string $crudAction = null,
  8. string $crudControllerFqcn = null,
  9. int $entityId = null
  10. ): ReminderInterface;
  11. }