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

15 行
319B

  1. <?php
  2. namespace Lc\SovBundle\Factory\Reminder;
  3. use Lc\SovBundle\Factory\AbstractFactory;
  4. use Lc\SovBundle\Model\Reminder\ReminderInterface;
  5. class ReminderFactory extends AbstractFactory implements ReminderFactoryInterface
  6. {
  7. public function getEntityClass()
  8. {
  9. return ReminderInterface::class;
  10. }
  11. }