diff --git a/src/Repository/GroupRepository.php b/src/Repository/GroupRepository.php index 8f7d98ecf93e8c71c7d9ea07f889c29191f53b0e..8f1d8f459c3677cf8b962a7b62b3a1f4bfbc446c 100755 --- a/src/Repository/GroupRepository.php +++ b/src/Repository/GroupRepository.php @@ -18,33 +18,4 @@ class GroupRepository extends ServiceEntityRepository { parent::__construct($registry, Group::class); } - - // /** - // * @return Group[] Returns an array of Group objects - // */ - /* - public function findByExampleField($value) - { - return $this->createQueryBuilder('g') - ->andWhere('g.exampleField = :val') - ->setParameter('val', $value) - ->orderBy('g.id', 'ASC') - ->setMaxResults(10) - ->getQuery() - ->getResult() - ; - } - */ - - /* - public function findOneBySomeField($value): ?Group - { - return $this->createQueryBuilder('g') - ->andWhere('g.exampleField = :val') - ->setParameter('val', $value) - ->getQuery() - ->getOneOrNullResult() - ; - } - */ }