您最多选择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. }