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

OrderRefundRepositoryQuery.php 400B

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