|
123456789101112131415 |
- <?php
-
- namespace Lc\CaracoleBundle\Repository\Reduction;
-
- use App\Entity\Reduction\ReductionCredit;
- use Doctrine\Persistence\ManagerRegistry;
- use Lc\SovBundle\Repository\AbstractRepository;
-
- class ReductionCreditRepository extends AbstractRepository
- {
- public function __construct(ManagerRegistry $registry)
- {
- parent::__construct($registry, ReductionCredit::class);
- }
- }
|