| 1 | <?php |
||
| 20 | class DocsPagesQuery extends AbstractCollectionQuery |
||
| 21 | { |
||
| 22 | /** |
||
| 23 | * @var array |
||
| 24 | */ |
||
| 25 | protected $attributes = [ |
||
| 26 | 'name' => 'docs_pages' |
||
| 27 | ]; |
||
| 28 | |||
| 29 | /** |
||
| 30 | * @return \GraphQL\Type\Definition\ListOfType |
||
| 31 | */ |
||
| 32 | public function type() |
||
| 36 | |||
| 37 | /** |
||
| 38 | * @return array |
||
| 39 | */ |
||
| 40 | protected function queryArguments(): array |
||
| 44 | |||
| 45 | /** |
||
| 46 | * @param $root |
||
| 47 | * @param array $args |
||
| 48 | * @return \Illuminate\Support\Collection |
||
| 49 | */ |
||
| 50 | public function resolve($root, array $args = []) |
||
| 57 | } |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.