Skip to content

Commit

Permalink
Remove invalid typehint
Browse files Browse the repository at this point in the history
  • Loading branch information
jskowronski39 committed Aug 19, 2023
1 parent 20a9731 commit bc919d0
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions src/Repository/UserGroup/UserGroupRepository.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
{
Expand Down

0 comments on commit bc919d0

Please sign in to comment.