|
- <?php
-
- namespace Lc\PietroBundle\Repository\Thematic;
-
- use Knp\Component\Pager\PaginatorInterface;
- use Lc\SovBundle\Repository\AbstractRepositoryQuery;
- use Lc\SovBundle\Repository\RepositoryQueryInterface;
-
- class ThematicRepositoryQuery extends AbstractRepositoryQuery implements RepositoryQueryInterface
- {
- public function __construct(ThematicRepository $repository, PaginatorInterface $paginator)
- {
- parent::__construct($repository, 'r', $paginator);
- }
- }
|