1 | <?php |
||
20 | class PaginatorQuery extends AbstractQuery |
||
21 | { |
||
22 | /** |
||
23 | * @var array |
||
24 | */ |
||
25 | protected $attributes = [ |
||
26 | 'name' => 'Paginator query', |
||
27 | 'description' => 'Returns an info about query', |
||
28 | ]; |
||
29 | |||
30 | /** |
||
31 | * @return ObjectType |
||
32 | */ |
||
33 | public function type(): ObjectType |
||
37 | |||
38 | /** |
||
39 | * @param $root |
||
40 | * @param array $args |
||
41 | * @return array |
||
42 | * @throws \Symfony\Component\HttpKernel\Exception\NotFoundHttpException |
||
43 | */ |
||
44 | public function resolve($root, array $args = []): array |
||
62 | |||
63 | /** |
||
64 | * @return array |
||
65 | */ |
||
66 | protected function queryArguments(): array |
||
75 | } |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.