|
- <?php
-
- namespace Lc\CaracoleBundle\Repository\Config;
-
- use Lc\CaracoleBundle\Model\Config\TaxRateInterface;
- use Lc\CaracoleBundle\Repository\RepositoryTrait;
- use Lc\SovBundle\Repository\AbstractRepository;
-
- /**
- * @method TaxRateInterface|null find($id, $lockMode = null, $lockVersion = null)
- * @method TaxRateInterface|null findOneBy(array $criteria, array $orderBy = null)
- * @method TaxRateInterface[] findAll()
- * @method TaxRateInterface[] findBy(array $criteria, array $orderBy = null, $limit = null, $offset = null)
- */
- class TaxRateRepository extends AbstractRepository
- {
- use RepositoryTrait;
-
- public function getInterfaceClass()
- {
- return TaxRateInterface::class;
- }
-
-
- }
|