@@ -106,7 +106,7 @@ |
||
106 | 106 | if (null !== $fieldOrDirective) { |
107 | 107 | $argumentDefinition = find( |
108 | 108 | $fieldOrDirective->getArguments(), |
109 | - function (Argument $argument) use ($node) { |
|
109 | + function(Argument $argument) use ($node) { |
|
110 | 110 | return $argument->getName() === $node->getNameValue(); |
111 | 111 | } |
112 | 112 | ); |
@@ -78,7 +78,7 @@ discard block |
||
78 | 78 | |
79 | 79 | $builtInTypes = keyMap( |
80 | 80 | array_merge(specifiedScalarTypes(), introspectionTypes()), |
81 | - function (NamedTypeInterface $type) { |
|
81 | + function(NamedTypeInterface $type) { |
|
82 | 82 | return $type->getName(); |
83 | 83 | } |
84 | 84 | ); |
@@ -133,7 +133,7 @@ discard block |
||
133 | 133 | return GraphQLDirective([ |
134 | 134 | 'name' => $node->getNameValue(), |
135 | 135 | 'description' => $node->getDescriptionValue(), |
136 | - 'locations' => array_map(function (NameNode $node) { |
|
136 | + 'locations' => array_map(function(NameNode $node) { |
|
137 | 137 | return $node->getValue(); |
138 | 138 | }, $node->getLocations()), |
139 | 139 | 'arguments' => $node->hasArguments() ? $this->buildArguments($node->getArguments()) : [], |
@@ -180,10 +180,10 @@ discard block |
||
180 | 180 | { |
181 | 181 | return keyValMap( |
182 | 182 | $nodes, |
183 | - function (InputValueDefinitionNode $value) { |
|
183 | + function(InputValueDefinitionNode $value) { |
|
184 | 184 | return $value->getNameValue(); |
185 | 185 | }, |
186 | - function (InputValueDefinitionNode $value): array { |
|
186 | + function(InputValueDefinitionNode $value): array { |
|
187 | 187 | $type = $this->buildWrappedType($value->getType()); |
188 | 188 | return [ |
189 | 189 | 'type' => $type, |
@@ -232,11 +232,11 @@ discard block |
||
232 | 232 | return GraphQLObjectType([ |
233 | 233 | 'name' => $node->getNameValue(), |
234 | 234 | 'description' => $node->getDescriptionValue(), |
235 | - 'fields' => function () use ($node) { |
|
235 | + 'fields' => function() use ($node) { |
|
236 | 236 | return $this->buildFields($node); |
237 | 237 | }, |
238 | - 'interfaces' => function () use ($node) { |
|
239 | - return $node->hasInterfaces() ? array_map(function (InterfaceTypeDefinitionNode $interface) { |
|
238 | + 'interfaces' => function() use ($node) { |
|
239 | + return $node->hasInterfaces() ? array_map(function(InterfaceTypeDefinitionNode $interface) { |
|
240 | 240 | return $this->buildType($interface); |
241 | 241 | }, $node->getInterfaces()) : []; |
242 | 242 | }, |
@@ -253,11 +253,11 @@ discard block |
||
253 | 253 | { |
254 | 254 | return $node->hasFields() ? keyValMap( |
255 | 255 | $node->getFields(), |
256 | - function ($value) { |
|
256 | + function($value) { |
|
257 | 257 | /** @noinspection PhpUndefinedMethodInspection */ |
258 | 258 | return $value->getNameValue(); |
259 | 259 | }, |
260 | - function ($value) { |
|
260 | + function($value) { |
|
261 | 261 | return $this->buildField($value); |
262 | 262 | } |
263 | 263 | ) : []; |
@@ -272,7 +272,7 @@ discard block |
||
272 | 272 | return GraphQLInterfaceType([ |
273 | 273 | 'name' => $node->getNameValue(), |
274 | 274 | 'description' => $node->getDescriptionValue(), |
275 | - 'fields' => function () use ($node): array { |
|
275 | + 'fields' => function() use ($node): array { |
|
276 | 276 | return $this->buildFields($node); |
277 | 277 | }, |
278 | 278 | 'astNode' => $node, |
@@ -290,10 +290,10 @@ discard block |
||
290 | 290 | 'description' => $node->getDescriptionValue(), |
291 | 291 | 'values' => $node->hasValues() ? keyValMap( |
292 | 292 | $node->getValues(), |
293 | - function (EnumValueDefinitionNode $value): string { |
|
293 | + function(EnumValueDefinitionNode $value): string { |
|
294 | 294 | return $value->getNameValue(); |
295 | 295 | }, |
296 | - function (EnumValueDefinitionNode $value): array { |
|
296 | + function(EnumValueDefinitionNode $value): array { |
|
297 | 297 | return [ |
298 | 298 | 'description' => $value->getDescriptionValue(), |
299 | 299 | 'deprecationReason' => getDeprecationReason($value), |
@@ -310,7 +310,7 @@ discard block |
||
310 | 310 | return GraphQLUnionType([ |
311 | 311 | 'name' => $node->getNameValue(), |
312 | 312 | 'description' => $node->getDescriptionValue(), |
313 | - 'types' => $node->hasTypes() ? array_map(function (TypeNodeInterface $type) { |
|
313 | + 'types' => $node->hasTypes() ? array_map(function(TypeNodeInterface $type) { |
|
314 | 314 | return $this->buildType($type); |
315 | 315 | }, $node->getTypes()) : [], |
316 | 316 | 'astNode' => $node, |
@@ -326,7 +326,7 @@ discard block |
||
326 | 326 | return GraphQLScalarType([ |
327 | 327 | 'name' => $node->getNameValue(), |
328 | 328 | 'description' => $node->getDescriptionValue(), |
329 | - 'serialize' => function ($value) { |
|
329 | + 'serialize' => function($value) { |
|
330 | 330 | return $value; |
331 | 331 | }, |
332 | 332 | 'astNode' => $node, |
@@ -346,10 +346,10 @@ discard block |
||
346 | 346 | 'description' => $node->getDescriptionValue(), |
347 | 347 | 'fields' => $node->hasFields() ? keyValMap( |
348 | 348 | $node->getFields(), |
349 | - function (InputValueDefinitionNode $value): string { |
|
349 | + function(InputValueDefinitionNode $value): string { |
|
350 | 350 | return $value->getNameValue(); |
351 | 351 | }, |
352 | - function (InputValueDefinitionNode $value): array { |
|
352 | + function(InputValueDefinitionNode $value): array { |
|
353 | 353 | $type = $this->buildWrappedType($value->getType()); |
354 | 354 | return [ |
355 | 355 | 'type' => $type, |
@@ -78,27 +78,27 @@ |
||
78 | 78 | |
79 | 79 | $this->definitionBuilder->setTypeDefinitionMap($nodeMap); |
80 | 80 | |
81 | - $types = array_map(function (TypeDefinitionNodeInterface $definition) { |
|
81 | + $types = array_map(function(TypeDefinitionNodeInterface $definition) { |
|
82 | 82 | return $this->definitionBuilder->buildType($definition); |
83 | 83 | }, $typeDefinitions); |
84 | 84 | |
85 | - $directives = array_map(function (DirectiveDefinitionNode $definition) { |
|
85 | + $directives = array_map(function(DirectiveDefinitionNode $definition) { |
|
86 | 86 | return $this->definitionBuilder->buildDirective($definition); |
87 | 87 | }, $directiveDefinitions); |
88 | 88 | |
89 | - if (!arraySome($directives, function (DirectiveInterface $directive) { |
|
89 | + if (!arraySome($directives, function(DirectiveInterface $directive) { |
|
90 | 90 | return $directive->getName() === 'skip'; |
91 | 91 | })) { |
92 | 92 | $directives[] = GraphQLSkipDirective(); |
93 | 93 | } |
94 | 94 | |
95 | - if (!arraySome($directives, function (DirectiveInterface $directive) { |
|
95 | + if (!arraySome($directives, function(DirectiveInterface $directive) { |
|
96 | 96 | return $directive->getName() === 'include'; |
97 | 97 | })) { |
98 | 98 | $directives[] = GraphQLIncludeDirective(); |
99 | 99 | } |
100 | 100 | |
101 | - if (!arraySome($directives, function (DirectiveInterface $directive) { |
|
101 | + if (!arraySome($directives, function(DirectiveInterface $directive) { |
|
102 | 102 | return $directive->getName() === 'deprecated'; |
103 | 103 | })) { |
104 | 104 | $directives[] = GraphQLDeprecatedDirective(); |
@@ -46,7 +46,7 @@ discard block |
||
46 | 46 | return $coercedValues; |
47 | 47 | } |
48 | 48 | |
49 | - $argumentNodeMap = keyMap($argumentNodes, function (ArgumentNode $value) { |
|
49 | + $argumentNodeMap = keyMap($argumentNodes, function(ArgumentNode $value) { |
|
50 | 50 | return $value->getNameValue(); |
51 | 51 | }); |
52 | 52 | |
@@ -177,7 +177,7 @@ discard block |
||
177 | 177 | $variableValues = [] |
178 | 178 | ): ?array { |
179 | 179 | $directiveNode = $node->hasDirectives() |
180 | - ? find($node->getDirectives(), function (NamedTypeNode $value) use ($directive) { |
|
180 | + ? find($node->getDirectives(), function(NamedTypeNode $value) use ($directive) { |
|
181 | 181 | return $value->getNameValue() === $directive->getName(); |
182 | 182 | }) : null; |
183 | 183 |