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

22 lines
798B

  1. <?php
  2. namespace Lc\CaracoleBundle\Repository\Merchant;
  3. use Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepository;
  4. use Doctrine\Persistence\ManagerRegistry;
  5. use Lc\CaracoleBundle\Model\Merchant\MerchantConfigInterface;
  6. /**
  7. * @method MerchantConfigInterface|null find($id, $lockMode = null, $lockVersion = null)
  8. * @method MerchantConfigInterface|null findOneBy(array $criteria, array $orderBy = null)
  9. * @method MerchantConfigInterface[] findAll()
  10. * @method MerchantConfigInterface[] findBy(array $criteria, array $orderBy = null, $limit = null, $offset = null)
  11. */
  12. class MerchantConfigRepository extends ServiceEntityRepository
  13. {
  14. public function __construct(ManagerRegistry $registry)
  15. {
  16. parent::__construct($registry, MerchantConfigInterface::class);
  17. }
  18. }