|
123456789101112131415161718 |
- <?php
-
- namespace Lc\CaracoleBundle\Repository\User;
-
- use Lc\CaracoleBundle\Repository\RepositoryTrait;
- use Lc\SovBundle\Model\User\GroupUserInterface;
- use Lc\SovBundle\Repository\User\GroupUserRepository as SovGroupUserRepository;
-
- /**
- * @method GroupUserInterface|null find($id, $lockMode = null, $lockVersion = null)
- * @method GroupUserInterface|null findOneBy(array $criteria, array $orderBy = null)
- * @method GroupUserInterface[] findAll()
- * @method GroupUserInterface[] findBy(array $criteria, array $orderBy = null, $limit = null, $offset = null)
- */
- class GroupUserRepository extends SovGroupUserRepository
- {
- use RepositoryTrait;
- }
|