Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

GroupUserRepository.php 653B

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