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 lines
727B

  1. <?php
  2. namespace Lc\ShopBundle\Repository;
  3. use Lc\ShopBundle\Context\DefaultRepositoryInterface;
  4. use Lc\ShopBundle\Context\GroupUserInterface;
  5. use Lc\ShopBundle\Context\UnitInterface;
  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 BaseRepository implements DefaultRepositoryInterface
  13. {
  14. public function getInterfaceClass()
  15. {
  16. return GroupUserInterface::class;
  17. }
  18. }