@@ -47,7 +47,7 @@ |
||
47 | 47 | |
48 | 48 | $context = $this->contextBuilder->build($schema, $document, $typeInfo); |
49 | 49 | |
50 | - $visitors = \array_map(function (RuleInterface $rule) use ($context) { |
|
50 | + $visitors = \array_map(function(RuleInterface $rule) use ($context) { |
|
51 | 51 | return $rule->setContext($context); |
52 | 52 | }, $rules); |
53 | 53 |
@@ -52,7 +52,7 @@ |
||
52 | 52 | $errors = $this->validate($schema); |
53 | 53 | |
54 | 54 | if (!empty($errors)) { |
55 | - $message = \implode("\n", \array_map(function (ValidationException $error) { |
|
55 | + $message = \implode("\n", \array_map(function(ValidationException $error) { |
|
56 | 56 | return $error->getMessage(); |
57 | 57 | }, $errors)); |
58 | 58 |
@@ -152,7 +152,7 @@ discard block |
||
152 | 152 | */ |
153 | 153 | public function getLocationsAsArray(): ?array |
154 | 154 | { |
155 | - return !empty($this->locations) ? array_map(function (SourceLocation $location) { |
|
155 | + return !empty($this->locations) ? array_map(function(SourceLocation $location) { |
|
156 | 156 | return $location->toArray(); |
157 | 157 | }, $this->locations) : null; |
158 | 158 | } |
@@ -191,7 +191,7 @@ discard block |
||
191 | 191 | ? (!empty($nodes) ? $nodes : []) |
192 | 192 | : (null !== $nodes ? [$nodes] : []); |
193 | 193 | |
194 | - $this->nodes = \array_filter($nodes, function ($node) { |
|
194 | + $this->nodes = \array_filter($nodes, function($node) { |
|
195 | 195 | return null !== $node; |
196 | 196 | }); |
197 | 197 | |
@@ -222,7 +222,7 @@ discard block |
||
222 | 222 | protected function resolvePositions(?array $positions) |
223 | 223 | { |
224 | 224 | if (null === $positions && !empty($this->nodes)) { |
225 | - $positions = array_reduce($this->nodes, function (array $list, ?NodeInterface $node) { |
|
225 | + $positions = array_reduce($this->nodes, function(array $list, ?NodeInterface $node) { |
|
226 | 226 | if (null !== $node) { |
227 | 227 | $location = $node->getLocation(); |
228 | 228 | if (null !== $location) { |
@@ -250,11 +250,11 @@ discard block |
||
250 | 250 | protected function resolveLocations(?array $positions, ?Source $source) |
251 | 251 | { |
252 | 252 | if (null !== $positions && null !== $source) { |
253 | - $locations = array_map(function ($position) use ($source) { |
|
253 | + $locations = array_map(function($position) use ($source) { |
|
254 | 254 | return SourceLocation::fromSource($source, $position); |
255 | 255 | }, $positions); |
256 | 256 | } elseif (!empty($this->nodes)) { |
257 | - $locations = array_reduce($this->nodes, function (array $list, NodeInterface $node) { |
|
257 | + $locations = array_reduce($this->nodes, function(array $list, NodeInterface $node) { |
|
258 | 258 | $location = $node->getLocation(); |
259 | 259 | if (null !== $location) { |
260 | 260 | $list[] = SourceLocation::fromSource($location->getSource(), $location->getStart()); |
@@ -308,7 +308,7 @@ discard block |
||
308 | 308 | // Assert each interface field arg is implemented. |
309 | 309 | foreach ($interfaceField->getArguments() as $interfaceArgument) { |
310 | 310 | $argumentName = $interfaceArgument->getName(); |
311 | - $objectArgument = find($objectField->getArguments(), function (Argument $argument) use ($argumentName) { |
|
311 | + $objectArgument = find($objectField->getArguments(), function(Argument $argument) use ($argumentName) { |
|
312 | 312 | return $argument->getName() === $argumentName; |
313 | 313 | }); |
314 | 314 | |
@@ -366,7 +366,7 @@ discard block |
||
366 | 366 | foreach ($objectFields as $objectArgument) { |
367 | 367 | $argumentName = $objectArgument->getName(); |
368 | 368 | $interfaceArgument = find($interfaceField->getArguments(), |
369 | - function (Argument $argument) use ($argumentName) { |
|
369 | + function(Argument $argument) use ($argumentName) { |
|
370 | 370 | return $argument->getName() === $argumentName; |
371 | 371 | }); |
372 | 372 | |
@@ -701,7 +701,7 @@ discard block |
||
701 | 701 | return null; |
702 | 702 | } |
703 | 703 | |
704 | - return \array_filter($node->getTypes(), function (NamedTypeNode $type) use ($memberTypeName) { |
|
704 | + return \array_filter($node->getTypes(), function(NamedTypeNode $type) use ($memberTypeName) { |
|
705 | 705 | return $type->getNameValue() === $memberTypeName; |
706 | 706 | }); |
707 | 707 | } |
@@ -720,7 +720,7 @@ discard block |
||
720 | 720 | return null; |
721 | 721 | } |
722 | 722 | |
723 | - return \array_filter($node->getValues(), function (NameAwareInterface $type) use ($valueName) { |
|
723 | + return \array_filter($node->getValues(), function(NameAwareInterface $type) use ($valueName) { |
|
724 | 724 | return $type->getNameValue() === $valueName; |
725 | 725 | }); |
726 | 726 | } |
@@ -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(); |
@@ -32,7 +32,7 @@ discard block |
||
32 | 32 | |
33 | 33 | return $count === 1 |
34 | 34 | ? $selected[0] |
35 | - : \array_reduce($selected, function ($list, $item) use ($count, &$index) { |
|
35 | + : \array_reduce($selected, function($list, $item) use ($count, &$index) { |
|
36 | 36 | $list .= ($index > 0 && $index < ($count - 1) ? ', ' : '') . ($index === ($count - 1) ? ' or ' : '') . |
37 | 37 | $item; |
38 | 38 | $index++; |
@@ -66,7 +66,7 @@ discard block |
||
66 | 66 | |
67 | 67 | $result = \array_keys($optionsByDistance); |
68 | 68 | |
69 | - \usort($result, function ($a, $b) use ($optionsByDistance) { |
|
69 | + \usort($result, function($a, $b) use ($optionsByDistance) { |
|
70 | 70 | return $optionsByDistance[$a] - $optionsByDistance[$b]; |
71 | 71 | }); |
72 | 72 | |
@@ -81,7 +81,7 @@ discard block |
||
81 | 81 | */ |
82 | 82 | function quotedOrList(array $items): string |
83 | 83 | { |
84 | - return orList(array_map(function ($item) { |
|
84 | + return orList(array_map(function($item) { |
|
85 | 85 | return '"' . $item . '"'; |
86 | 86 | }, $items)); |
87 | 87 | } |
@@ -95,7 +95,7 @@ discard block |
||
95 | 95 | */ |
96 | 96 | function arrayEvery(array $array, callable $fn): bool |
97 | 97 | { |
98 | - return array_reduce($array, function ($result, $value) use ($fn) { |
|
98 | + return array_reduce($array, function($result, $value) use ($fn) { |
|
99 | 99 | return $result && $fn($value); |
100 | 100 | }, true); |
101 | 101 | } |
@@ -107,7 +107,7 @@ discard block |
||
107 | 107 | */ |
108 | 108 | function arraySome(array $array, callable $fn) |
109 | 109 | { |
110 | - return array_reduce($array, function ($result, $value) use ($fn) { |
|
110 | + return array_reduce($array, function($result, $value) use ($fn) { |
|
111 | 111 | return $result || $fn($value); |
112 | 112 | }); |
113 | 113 | } |
@@ -135,7 +135,7 @@ discard block |
||
135 | 135 | */ |
136 | 136 | function keyMap(array $array, callable $keyFn): array |
137 | 137 | { |
138 | - return array_reduce($array, function ($map, $item) use ($keyFn) { |
|
138 | + return array_reduce($array, function($map, $item) use ($keyFn) { |
|
139 | 139 | $map[$keyFn($item)] = $item; |
140 | 140 | return $map; |
141 | 141 | }, []); |
@@ -149,7 +149,7 @@ discard block |
||
149 | 149 | */ |
150 | 150 | function keyValueMap(array $array, callable $keyFn, callable $valFn): array |
151 | 151 | { |
152 | - return array_reduce($array, function ($map, $item) use ($keyFn, $valFn) { |
|
152 | + return array_reduce($array, function($map, $item) use ($keyFn, $valFn) { |
|
153 | 153 | $map[$keyFn($item)] = $valFn($item); |
154 | 154 | return $map; |
155 | 155 | }, []); |
@@ -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 |
@@ -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 |
@@ -85,7 +85,7 @@ discard block |
||
85 | 85 | 'name' => '__schema', |
86 | 86 | 'type' => GraphQLNonNull(__Schema()), |
87 | 87 | 'description' => 'Access the current type schema of this server.', |
88 | - 'resolve' => function ($source, $args, $context, ResolveInfo $info): SchemaInterface { |
|
88 | + 'resolve' => function($source, $args, $context, ResolveInfo $info): SchemaInterface { |
|
89 | 89 | $schema = $info->getSchema(); |
90 | 90 | return $schema; |
91 | 91 | } |
@@ -105,7 +105,7 @@ discard block |
||
105 | 105 | 'args' => [ |
106 | 106 | 'name' => ['type' => GraphQLNonNull(GraphQLString())], |
107 | 107 | ], |
108 | - 'resolve' => function ($source, $args, $context, ResolveInfo $info): TypeInterface { |
|
108 | + 'resolve' => function($source, $args, $context, ResolveInfo $info): TypeInterface { |
|
109 | 109 | /** @var SchemaInterface $schema */ |
110 | 110 | $name = $args['name']; |
111 | 111 | $schema = $info->getSchema(); |
@@ -124,7 +124,7 @@ discard block |
||
124 | 124 | 'name' => '__typename', |
125 | 125 | 'type' => GraphQLNonNull(GraphQLString()), |
126 | 126 | 'description' => 'The name of the current Object type at runtime.', |
127 | - 'resolve' => function ($source, $args, $context, ResolveInfo $info): string { |
|
127 | + 'resolve' => function($source, $args, $context, ResolveInfo $info): string { |
|
128 | 128 | /** @var NamedTypeInterface $parentType */ |
129 | 129 | $parentType = $info->getParentType(); |
130 | 130 | return $parentType->getName(); |
@@ -157,7 +157,7 @@ discard block |
||
157 | 157 | { |
158 | 158 | return arraySome( |
159 | 159 | introspectionTypes(), |
160 | - function (TypeInterface $introspectionType) use ($type) { |
|
160 | + function(TypeInterface $introspectionType) use ($type) { |
|
161 | 161 | /** @noinspection PhpUndefinedMethodInspection */ |
162 | 162 | return $type->getName() === $introspectionType->getName(); |
163 | 163 | } |