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

17 行
513B

  1. <?php
  2. namespace Lc\SovBundle\Repository\Reminder;
  3. use App\Entity\Reminder\Reminder;
  4. use Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepository;
  5. use Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface;
  6. use Doctrine\Persistence\ManagerRegistry;
  7. class ReminderRepository extends ServiceEntityRepository implements ServiceEntityRepositoryInterface
  8. {
  9. public function __construct(ManagerRegistry $registry)
  10. {
  11. parent::__construct($registry, Reminder::class);
  12. }
  13. }