|
- <?php
-
- namespace Lc\CaracoleBundle\Repository\User;
-
- use Lc\CaracoleBundle\Model\User\GroupUserInterface;
- use Lc\SovBundle\Repository\AbstractRepository;
-
- /**
- * @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 AbstractRepository
- {
- public function getInterfaceClass()
- {
- return GroupUserInterface::class;
- }
-
-
- }
|