Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

18 lines
511B

  1. <?php
  2. namespace Lc\CaracoleBundle\Repository\Setting;
  3. use Knp\Component\Pager\PaginatorInterface;
  4. use Lc\CaracoleBundle\Repository\SectionRepositoryQueryTrait;
  5. use Lc\SovBundle\Repository\AbstractRepositoryQuery;
  6. class SectionSettingRepositoryQuery extends AbstractRepositoryQuery
  7. {
  8. use SectionRepositoryQueryTrait;
  9. public function __construct(SectionSettingRepository $repository, PaginatorInterface $paginator)
  10. {
  11. parent::__construct($repository, 'sectionSetting', $paginator);
  12. }
  13. }