You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 line
643B

  1. <?php
  2. namespace Lc\CaracoleBundle\Repository\User;
  3. use Lc\CaracoleBundle\Model\User\GroupUserInterface;
  4. use Lc\SovBundle\Repository\AbstractRepository;
  5. /**
  6. * @method GroupUserInterface|null find($id, $lockMode = null, $lockVersion = null)
  7. * @method GroupUserInterface|null findOneBy(array $criteria, array $orderBy = null)
  8. * @method GroupUserInterface[] findAll()
  9. * @method GroupUserInterface[] findBy(array $criteria, array $orderBy = null, $limit = null, $offset = null)
  10. */
  11. class GroupUserRepository extends AbstractRepository
  12. {
  13. public function getInterfaceClass()
  14. {
  15. return GroupUserInterface::class;
  16. }
  17. }