@@ -62,7 +62,7 @@ discard block |
||
62 | 62 | return $coercedValues; |
63 | 63 | } |
64 | 64 | |
65 | - $argumentNodeMap = keyMap($argumentNodes, function (ArgumentNode $value) { |
|
65 | + $argumentNodeMap = keyMap($argumentNodes, function(ArgumentNode $value) { |
|
66 | 66 | return $value->getNameValue(); |
67 | 67 | }); |
68 | 68 | |
@@ -133,7 +133,7 @@ discard block |
||
133 | 133 | array $variableValues = [] |
134 | 134 | ): ?array { |
135 | 135 | $directiveNode = $node->hasDirectives() |
136 | - ? find($node->getDirectives(), function (NameAwareInterface $value) use ($directive) { |
|
136 | + ? find($node->getDirectives(), function(NameAwareInterface $value) use ($directive) { |
|
137 | 137 | return $value->getNameValue() === $directive->getName(); |
138 | 138 | }) : null; |
139 | 139 |
@@ -33,18 +33,18 @@ discard block |
||
33 | 33 | */ |
34 | 34 | public function register() |
35 | 35 | { |
36 | - $this->container->add(GraphQL::BOOLEAN, function () { |
|
36 | + $this->container->add(GraphQL::BOOLEAN, function() { |
|
37 | 37 | return GraphQLScalarType([ |
38 | 38 | 'name' => TypeNameEnum::BOOLEAN, |
39 | 39 | 'description' => 'The `Boolean` scalar type represents `true` or `false`.', |
40 | - 'serialize' => function ($value) { |
|
40 | + 'serialize' => function($value) { |
|
41 | 41 | return coerceBoolean($value); |
42 | 42 | }, |
43 | - 'parseValue' => function ($value) { |
|
43 | + 'parseValue' => function($value) { |
|
44 | 44 | return coerceBoolean($value); |
45 | 45 | }, |
46 | 46 | |
47 | - 'parseLiteral' => function (NodeInterface $node) { |
|
47 | + 'parseLiteral' => function(NodeInterface $node) { |
|
48 | 48 | if ($node instanceof BooleanValueNode) { |
49 | 49 | return $node->getValue(); |
50 | 50 | } |
@@ -53,20 +53,20 @@ discard block |
||
53 | 53 | ]); |
54 | 54 | }, true/* $shared */); |
55 | 55 | |
56 | - $this->container->add(GraphQL::FLOAT, function () { |
|
56 | + $this->container->add(GraphQL::FLOAT, function() { |
|
57 | 57 | return GraphQLScalarType([ |
58 | 58 | 'name' => TypeNameEnum::FLOAT, |
59 | 59 | 'description' => |
60 | 60 | 'The `Float` scalar type represents signed double-precision fractional ' . |
61 | 61 | 'values as specified by ' . |
62 | 62 | '[IEEE 754](http://en.wikipedia.org/wiki/IEEE_floating_point).', |
63 | - 'serialize' => function ($value) { |
|
63 | + 'serialize' => function($value) { |
|
64 | 64 | return coerceFloat($value); |
65 | 65 | }, |
66 | - 'parseValue' => function ($value) { |
|
66 | + 'parseValue' => function($value) { |
|
67 | 67 | return coerceFloat($value); |
68 | 68 | }, |
69 | - 'parseLiteral' => function (NodeInterface $node) { |
|
69 | + 'parseLiteral' => function(NodeInterface $node) { |
|
70 | 70 | if ($node instanceof FloatValueNode || $node instanceof IntValueNode) { |
71 | 71 | return $node->getValue(); |
72 | 72 | } |
@@ -75,19 +75,19 @@ discard block |
||
75 | 75 | ]); |
76 | 76 | }, true/* $shared */); |
77 | 77 | |
78 | - $this->container->add(GraphQL::INT, function () { |
|
78 | + $this->container->add(GraphQL::INT, function() { |
|
79 | 79 | return GraphQLScalarType([ |
80 | 80 | 'name' => TypeNameEnum::INT, |
81 | 81 | 'description' => |
82 | 82 | 'The `Int` scalar type represents non-fractional signed whole numeric ' . |
83 | 83 | 'values. Int can represent values between -(2^31) and 2^31 - 1.', |
84 | - 'serialize' => function ($value) { |
|
84 | + 'serialize' => function($value) { |
|
85 | 85 | return coerceInt($value); |
86 | 86 | }, |
87 | - 'parseValue' => function ($value) { |
|
87 | + 'parseValue' => function($value) { |
|
88 | 88 | return coerceInt($value); |
89 | 89 | }, |
90 | - 'parseLiteral' => function (NodeInterface $node) { |
|
90 | + 'parseLiteral' => function(NodeInterface $node) { |
|
91 | 91 | if ($node instanceof IntValueNode) { |
92 | 92 | $value = (int)$node->getValue(); |
93 | 93 | if ((string)$node->getValue() === (string)$value && |
@@ -100,7 +100,7 @@ discard block |
||
100 | 100 | ]); |
101 | 101 | }, true/* $shared */); |
102 | 102 | |
103 | - $this->container->add(GraphQL::ID, function () { |
|
103 | + $this->container->add(GraphQL::ID, function() { |
|
104 | 104 | return GraphQLScalarType([ |
105 | 105 | 'name' => TypeNameEnum::ID, |
106 | 106 | 'description' => |
@@ -109,13 +109,13 @@ discard block |
||
109 | 109 | 'response as a String; however, it is not intended to be human-readable. ' . |
110 | 110 | 'When expected as an input type, any string (such as `"4"`) or integer ' . |
111 | 111 | '(such as `4`) input value will be accepted as an ID.', |
112 | - 'serialize' => function ($value) { |
|
112 | + 'serialize' => function($value) { |
|
113 | 113 | return coerceString($value); |
114 | 114 | }, |
115 | - 'parseValue' => function ($value) { |
|
115 | + 'parseValue' => function($value) { |
|
116 | 116 | return coerceString($value); |
117 | 117 | }, |
118 | - 'parseLiteral' => function (NodeInterface $node) { |
|
118 | + 'parseLiteral' => function(NodeInterface $node) { |
|
119 | 119 | if ($node instanceof StringValueNode || $node instanceof IntValueNode) { |
120 | 120 | return $node->getValue(); |
121 | 121 | } |
@@ -124,20 +124,20 @@ discard block |
||
124 | 124 | ]); |
125 | 125 | }, true/* $shared */); |
126 | 126 | |
127 | - $this->container->add(GraphQL::STRING, function () { |
|
127 | + $this->container->add(GraphQL::STRING, function() { |
|
128 | 128 | return GraphQLScalarType([ |
129 | 129 | 'name' => TypeNameEnum::STRING, |
130 | 130 | 'description' => |
131 | 131 | 'The `String` scalar type represents textual data, represented as UTF-8 ' . |
132 | 132 | 'character sequences. The String type is most often used by GraphQL to ' . |
133 | 133 | 'represent free-form human-readable text.', |
134 | - 'serialize' => function ($value) { |
|
134 | + 'serialize' => function($value) { |
|
135 | 135 | return coerceString($value); |
136 | 136 | }, |
137 | - 'parseValue' => function ($value) { |
|
137 | + 'parseValue' => function($value) { |
|
138 | 138 | return coerceString($value); |
139 | 139 | }, |
140 | - 'parseLiteral' => function (NodeInterface $node) { |
|
140 | + 'parseLiteral' => function(NodeInterface $node) { |
|
141 | 141 | if ($node instanceof StringValueNode) { |
142 | 142 | return $node->getValue(); |
143 | 143 | } |
@@ -168,7 +168,7 @@ |
||
168 | 168 | $coercedValues = []; |
169 | 169 | |
170 | 170 | /** @var ObjectFieldNode[] $fieldNodes */ |
171 | - $fieldNodes = keyMap($node->getFields(), function (ObjectFieldNode $value) { |
|
171 | + $fieldNodes = keyMap($node->getFields(), function(ObjectFieldNode $value) { |
|
172 | 172 | return $value->getNameValue(); |
173 | 173 | }); |
174 | 174 |
@@ -97,7 +97,7 @@ discard block |
||
97 | 97 | |
98 | 98 | $builtInTypes = keyMap( |
99 | 99 | \array_merge(specifiedScalarTypes(), introspectionTypes()), |
100 | - function (NamedTypeInterface $type) { |
|
100 | + function(NamedTypeInterface $type) { |
|
101 | 101 | return $type->getName(); |
102 | 102 | } |
103 | 103 | ); |
@@ -159,7 +159,7 @@ discard block |
||
159 | 159 | return GraphQLDirective([ |
160 | 160 | 'name' => $node->getNameValue(), |
161 | 161 | 'description' => $node->getDescriptionValue(), |
162 | - 'locations' => \array_map(function (NameNode $node) { |
|
162 | + 'locations' => \array_map(function(NameNode $node) { |
|
163 | 163 | return $node->getValue(); |
164 | 164 | }, $node->getLocations()), |
165 | 165 | 'arguments' => $node->hasArguments() ? $this->buildArguments($node->getArguments()) : [], |
@@ -208,10 +208,10 @@ discard block |
||
208 | 208 | { |
209 | 209 | return keyValueMap( |
210 | 210 | $nodes, |
211 | - function (InputValueDefinitionNode $value) { |
|
211 | + function(InputValueDefinitionNode $value) { |
|
212 | 212 | return $value->getNameValue(); |
213 | 213 | }, |
214 | - function (InputValueDefinitionNode $value): array { |
|
214 | + function(InputValueDefinitionNode $value): array { |
|
215 | 215 | $type = $this->buildWrappedType($value->getType()); |
216 | 216 | $defaultValue = $value->getDefaultValue(); |
217 | 217 | return [ |
@@ -263,11 +263,11 @@ discard block |
||
263 | 263 | return GraphQLObjectType([ |
264 | 264 | 'name' => $node->getNameValue(), |
265 | 265 | 'description' => $node->getDescriptionValue(), |
266 | - 'fields' => function () use ($node) { |
|
266 | + 'fields' => function() use ($node) { |
|
267 | 267 | return $this->buildFields($node); |
268 | 268 | }, |
269 | - 'interfaces' => function () use ($node) { |
|
270 | - return $node->hasInterfaces() ? \array_map(function (NodeInterface $interface) { |
|
269 | + 'interfaces' => function() use ($node) { |
|
270 | + return $node->hasInterfaces() ? \array_map(function(NodeInterface $interface) { |
|
271 | 271 | return $this->buildType($interface); |
272 | 272 | }, $node->getInterfaces()) : []; |
273 | 273 | }, |
@@ -284,11 +284,11 @@ discard block |
||
284 | 284 | |
285 | 285 | return $node->hasFields() ? keyValueMap( |
286 | 286 | $node->getFields(), |
287 | - function ($value) { |
|
287 | + function($value) { |
|
288 | 288 | /** @noinspection PhpUndefinedMethodInspection */ |
289 | 289 | return $value->getNameValue(); |
290 | 290 | }, |
291 | - function ($value) use ($resolverMap) { |
|
291 | + function($value) use ($resolverMap) { |
|
292 | 292 | return $this->buildField($value, $resolverMap); |
293 | 293 | } |
294 | 294 | ) : []; |
@@ -303,7 +303,7 @@ discard block |
||
303 | 303 | return GraphQLInterfaceType([ |
304 | 304 | 'name' => $node->getNameValue(), |
305 | 305 | 'description' => $node->getDescriptionValue(), |
306 | - 'fields' => function () use ($node): array { |
|
306 | + 'fields' => function() use ($node): array { |
|
307 | 307 | return $this->buildFields($node); |
308 | 308 | }, |
309 | 309 | 'astNode' => $node, |
@@ -321,10 +321,10 @@ discard block |
||
321 | 321 | 'description' => $node->getDescriptionValue(), |
322 | 322 | 'values' => $node->hasValues() ? keyValueMap( |
323 | 323 | $node->getValues(), |
324 | - function (EnumValueDefinitionNode $value): string { |
|
324 | + function(EnumValueDefinitionNode $value): string { |
|
325 | 325 | return $value->getNameValue(); |
326 | 326 | }, |
327 | - function (EnumValueDefinitionNode $value): array { |
|
327 | + function(EnumValueDefinitionNode $value): array { |
|
328 | 328 | return [ |
329 | 329 | 'description' => $value->getDescriptionValue(), |
330 | 330 | 'deprecationReason' => $this->getDeprecationReason($value), |
@@ -345,7 +345,7 @@ discard block |
||
345 | 345 | return GraphQLUnionType([ |
346 | 346 | 'name' => $node->getNameValue(), |
347 | 347 | 'description' => $node->getDescriptionValue(), |
348 | - 'types' => $node->hasTypes() ? \array_map(function (TypeNodeInterface $type) { |
|
348 | + 'types' => $node->hasTypes() ? \array_map(function(TypeNodeInterface $type) { |
|
349 | 349 | return $this->buildType($type); |
350 | 350 | }, $node->getTypes()) : [], |
351 | 351 | 'astNode' => $node, |
@@ -361,7 +361,7 @@ discard block |
||
361 | 361 | return GraphQLScalarType([ |
362 | 362 | 'name' => $node->getNameValue(), |
363 | 363 | 'description' => $node->getDescriptionValue(), |
364 | - 'serialize' => function ($value) { |
|
364 | + 'serialize' => function($value) { |
|
365 | 365 | return $value; |
366 | 366 | }, |
367 | 367 | 'astNode' => $node, |
@@ -377,13 +377,13 @@ discard block |
||
377 | 377 | return GraphQLInputObjectType([ |
378 | 378 | 'name' => $node->getNameValue(), |
379 | 379 | 'description' => $node->getDescriptionValue(), |
380 | - 'fields' => $node->hasFields() ? function () use ($node) { |
|
380 | + 'fields' => $node->hasFields() ? function() use ($node) { |
|
381 | 381 | return keyValueMap( |
382 | 382 | $node->getFields(), |
383 | - function (InputValueDefinitionNode $value): string { |
|
383 | + function(InputValueDefinitionNode $value): string { |
|
384 | 384 | return $value->getNameValue(); |
385 | 385 | }, |
386 | - function (InputValueDefinitionNode $value): array { |
|
386 | + function(InputValueDefinitionNode $value): array { |
|
387 | 387 | $type = $this->buildWrappedType($value->getType()); |
388 | 388 | return [ |
389 | 389 | 'type' => $type, |