|
123456789101112131415161718192021 |
- <?php
-
- namespace Lc\CaracoleBundle\Repository\Common;
-
- use Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepository;
- use Doctrine\Persistence\ManagerRegistry;
- use Lc\CaracoleBundle\Model\Common\UnitInterface;
-
-
- class UnitRepository extends ServiceEntityRepository
- {
- public function __construct(ManagerRegistry $registry)
- {
- parent::__construct($registry, UnitInterface::class);
- }
- }
|