Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

23 lines
664B

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