|
- <?php
-
- namespace Lc\PietroBundle\Repository\Thematic;
-
- use Lc\PietroBundle\Model\Thematic;
- use Lc\SovBundle\Repository\AbstractRepository;
- use Doctrine\Persistence\ManagerRegistry;
-
- class ThematicRepository extends AbstractRepository
- {
- public function __construct(ManagerRegistry $registry)
- {
- parent::__construct($registry, Thematic::class);
- }
- }
|