diff --git a/src/Repository/UserGroup/UserGroupRepository.php b/src/Repository/UserGroup/UserGroupRepository.php index 34b907a6..d47ec48e 100644 --- a/src/Repository/UserGroup/UserGroupRepository.php +++ b/src/Repository/UserGroup/UserGroupRepository.php @@ -5,15 +5,14 @@ namespace App\Repository\UserGroup; use App\Entity\UserGroup\UserGroup; -use App\Entity\UserGroup\UserGroupInterface; use Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepository; use Doctrine\Persistence\ManagerRegistry; /** - * @method null|UserGroupInterface find($id, $lockMode = null, $lockVersion = null) - * @method null|UserGroupInterface findOneBy(array $criteria, array $orderBy = null) - * @method UserGroupInterface[] findAll() - * @method UserGroupInterface[] findBy(array $criteria, array $orderBy = null, $limit = null, $offset = null) + * @method null|UserGroup find($id, $lockMode = null, $lockVersion = null) + * @method null|UserGroup findOneBy(array $criteria, array $orderBy = null) + * @method UserGroup[] findAll() + * @method UserGroup[] findBy(array $criteria, array $orderBy = null, $limit = null, $offset = null) */ class UserGroupRepository extends ServiceEntityRepository {