@@ -111,7 +111,7 @@ discard block |
||
111 | 111 | } |
112 | 112 | |
113 | 113 | /** |
114 | - * @param Query|Field $query |
|
114 | + * @param Query $query |
|
115 | 115 | * @param AbstractObjectType $currentLevelSchema |
116 | 116 | * @return array|bool|mixed |
117 | 117 | */ |
@@ -260,6 +260,9 @@ discard block |
||
260 | 260 | } |
261 | 261 | } |
262 | 262 | |
263 | + /** |
|
264 | + * @param AbstractField $field |
|
265 | + */ |
|
263 | 266 | protected function createResolveInfo($field, $fields) { |
264 | 267 | return new ResolveInfo($field, $fields, $this->executionContext); |
265 | 268 | } |
@@ -322,7 +325,7 @@ discard block |
||
322 | 325 | } |
323 | 326 | |
324 | 327 | /** |
325 | - * @param $query Query|FragmentInterface |
|
328 | + * @param Query $query Query|FragmentInterface |
|
326 | 329 | * @param $queryType AbstractObjectType|TypeInterface|Field|AbstractType |
327 | 330 | * @param $resolvedValue mixed |
328 | 331 | * @param $value array |
@@ -494,7 +497,7 @@ discard block |
||
494 | 497 | * Fragments (anonymous and named), and Fields. The core of the function is simple: recurse until we hit the base |
495 | 498 | * case of a Field and yield that back up to the visitor up in `doVisit`. |
496 | 499 | * |
497 | - * @param Query|Field|FragmentInterface $queryNode |
|
500 | + * @param Query $queryNode |
|
498 | 501 | * @param AbstractField $currentLevelAST |
499 | 502 | * |
500 | 503 | * @return \Generator |