Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

26 lines
917B

  1. <?php
  2. namespace Lc\ShopBundle\Repository;
  3. use App\Entity\MerchantConfig;
  4. use Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepository;
  5. use Doctrine\Common\Persistence\ManagerRegistry;
  6. use Doctrine\ORM\EntityManager;
  7. use Lc\ShopBundle\Context\DefaultRepositoryInterface;
  8. use Lc\ShopBundle\Context\MerchantConfigInterface;
  9. use Lc\ShopBundle\Repository\BaseRepository;
  10. use Symfony\Component\Security\Core\Security;
  11. /**
  12. * @method MerchantConfig|null find($id, $lockMode = null, $lockVersion = null)
  13. * @method MerchantConfig|null findOneBy(array $criteria, array $orderBy = null)
  14. * @method MerchantConfig[] findBy(array $criteria, array $orderBy = null, $limit = null, $offset = null)
  15. */
  16. class MerchantConfigRepository extends BaseRepository implements DefaultRepositoryInterface
  17. {
  18. public function getInterfaceClass()
  19. {
  20. return MerchantConfigInterface::class;
  21. }
  22. }