您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

CreditHistoryRepository.php 787B

123456789101112131415161718192021
  1. <?php
  2. namespace Lc\CaracoleBundle\Repository\Credit;
  3. use Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepository;
  4. use Doctrine\Persistence\ManagerRegistry;
  5. use Lc\CaracoleBundle\Model\Credit\CreditHistoryInterface;
  6. /**
  7. * @method CreditHistoryInterface|null find($id, $lockMode = null, $lockVersion = null)
  8. * @method CreditHistoryInterface|null findOneBy(array $criteria, array $orderBy = null)
  9. * @method CreditHistoryInterface[] findAll()
  10. * @method CreditHistoryInterface[] findBy(array $criteria, array $orderBy = null, $limit = null, $offset = null)
  11. */
  12. class CreditHistoryRepository extends ServiceEntityRepository
  13. {
  14. public function __construct(ManagerRegistry $registry)
  15. {
  16. parent::__construct($registry, CreditHistoryInterface::class);
  17. }
  18. }