@@ -22,7 +22,7 @@ discard block |
||
22 | 22 | ->addField('kind', 'string') |
23 | 23 | ->addField('description', 'string') |
24 | 24 | ->addField('ofType', new QueryListType(), [ |
25 | - 'resolve' => function () { |
|
25 | + 'resolve' => function() { |
|
26 | 26 | return []; |
27 | 27 | } |
28 | 28 | ]) |
@@ -36,7 +36,7 @@ discard block |
||
36 | 36 | public function resolve($value = null, $args = []) |
37 | 37 | { |
38 | 38 | /** @var Schema|Field $value */ |
39 | - if($value instanceof Schema){ |
|
39 | + if ($value instanceof Schema) { |
|
40 | 40 | return $value->getQueryType(); |
41 | 41 | } |
42 | 42 |