Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

ReminderRepository.php 513B

3 år sedan
3 år sedan
3 år sedan
3 år sedan
12345678910111213141516
  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. }