Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

TaxRateRepository.php 672B

123456789101112131415161718192021
  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. }