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.

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