You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
709B

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