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.

27 lines
804B

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