您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

UnitRepositoryQuery.php 380B

3 年前
3 年前
3 年前
1234567891011121314
  1. <?php
  2. namespace Lc\CaracoleBundle\Repository\Config;
  3. use Knp\Component\Pager\PaginatorInterface;
  4. use Lc\SovBundle\Repository\AbstractRepositoryQuery;
  5. class UnitRepositoryQuery extends AbstractRepositoryQuery
  6. {
  7. public function __construct(UnitRepository $repository, PaginatorInterface $paginator)
  8. {
  9. parent::__construct($repository, 'unit', $paginator);
  10. }
  11. }