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