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

DocumentRepositoryQuery.php 485B

3 лет назад
3 лет назад
3 лет назад
3 лет назад
1234567891011121314151617
  1. <?php
  2. namespace Lc\CaracoleBundle\Repository\File;
  3. use Knp\Component\Pager\PaginatorInterface;
  4. use Lc\CaracoleBundle\Repository\MerchantRepositoryQueryTrait;
  5. use Lc\SovBundle\Repository\AbstractRepositoryQuery;
  6. class DocumentRepositoryQuery extends AbstractRepositoryQuery
  7. {
  8. use MerchantRepositoryQueryTrait;
  9. public function __construct(DocumentRepository $repository, PaginatorInterface $paginator)
  10. {
  11. parent::__construct($repository, 'r', $paginator);
  12. }
  13. }