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

21 line
706B

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