選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

15 行
377B

  1. <?php
  2. namespace Lc\PietroBundle\Repository\Dream;
  3. use Knp\Component\Pager\PaginatorInterface;
  4. use Lc\PietroBundle\Repository\Search\SearchRepositoryQuery;
  5. class DreamRepositoryQuery extends SearchRepositoryQuery
  6. {
  7. public function __construct(DreamRepository $repository, PaginatorInterface $paginator)
  8. {
  9. parent::__construct($repository, $paginator);
  10. }
  11. }