選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

22 行
787B

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