Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

22 linhas
672B

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