選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

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. }