@@ -26,7 +26,7 @@ |
||
26 | 26 | */ |
27 | 27 | protected function enterDocument(DocumentNode $node): ?NodeInterface |
28 | 28 | { |
29 | - $this->operationCount = \count(\array_filter($node->getDefinitions(), function ($definition) { |
|
29 | + $this->operationCount = \count(\array_filter($node->getDefinitions(), function($definition) { |
|
30 | 30 | return $definition instanceof OperationDefinitionNode; |
31 | 31 | })); |
32 | 32 |
@@ -101,7 +101,7 @@ |
||
101 | 101 | |
102 | 102 | $this->context->reportError( |
103 | 103 | new ValidationException( |
104 | - fragmentCycleMessage($spreadName, \array_map(function (FragmentSpreadNode $spread) { |
|
104 | + fragmentCycleMessage($spreadName, \array_map(function(FragmentSpreadNode $spread) { |
|
105 | 105 | return $spread->getNameValue(); |
106 | 106 | }, $cyclePath)), |
107 | 107 | \array_merge($cyclePath, [$spreadNode]) |
@@ -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()); |
@@ -66,7 +66,7 @@ |
||
66 | 66 | $array = ['data' => $this->data]; |
67 | 67 | |
68 | 68 | if (!empty($this->errors)) { |
69 | - $array['errors'] = array_map(function (GraphQLException $error) { |
|
69 | + $array['errors'] = array_map(function(GraphQLException $error) { |
|
70 | 70 | return $error->toArray(); |
71 | 71 | }, $this->errors); |
72 | 72 | } |
@@ -104,7 +104,7 @@ |
||
104 | 104 | $line < \count($lines) ? leftPad($padLen, $nextLineNum) . ': ' . $lines[$line] : null, |
105 | 105 | ]; |
106 | 106 | |
107 | - return \implode("\n", \array_filter($outputLines, function ($line) { |
|
107 | + return \implode("\n", \array_filter($outputLines, function($line) { |
|
108 | 108 | return null !== $line; |
109 | 109 | })); |
110 | 110 | } |
@@ -124,7 +124,7 @@ |
||
124 | 124 | { |
125 | 125 | return arraySome( |
126 | 126 | introspectionTypes(), |
127 | - function (TypeInterface $introspectionType) use ($type) { |
|
127 | + function(TypeInterface $introspectionType) use ($type) { |
|
128 | 128 | /** @noinspection PhpUndefinedMethodInspection */ |
129 | 129 | return $type->getName() === $introspectionType->getName(); |
130 | 130 | } |
@@ -251,7 +251,7 @@ discard block |
||
251 | 251 | if ($isContainsPromise) { |
252 | 252 | $keys = array_keys($finalResults); |
253 | 253 | $promise = \React\Promise\all(array_values($finalResults)); |
254 | - $promise->then(function ($values) use ($keys, &$finalResults) { |
|
254 | + $promise->then(function($values) use ($keys, &$finalResults) { |
|
255 | 255 | foreach ($values as $i => $value) { |
256 | 256 | $finalResults[$keys[$i]] = $value; |
257 | 257 | } |
@@ -285,7 +285,7 @@ discard block |
||
285 | 285 | |
286 | 286 | $promise = new \React\Promise\FulfilledPromise([]); |
287 | 287 | |
288 | - $resolve = function ($results, $fieldName, $path, $objectType, $rootValue, $fieldNodes) { |
|
288 | + $resolve = function($results, $fieldName, $path, $objectType, $rootValue, $fieldNodes) { |
|
289 | 289 | $fieldPath = $path; |
290 | 290 | $fieldPath[] = $fieldName; |
291 | 291 | try { |
@@ -296,7 +296,7 @@ discard block |
||
296 | 296 | |
297 | 297 | if ($this->isPromise($result)) { |
298 | 298 | /** @var ExtendedPromiseInterface $result */ |
299 | - return $result->then(function ($resolvedResult) use ($fieldName, $results) { |
|
299 | + return $result->then(function($resolvedResult) use ($fieldName, $results) { |
|
300 | 300 | $results[$fieldName] = $resolvedResult; |
301 | 301 | return $results; |
302 | 302 | }); |
@@ -308,7 +308,7 @@ discard block |
||
308 | 308 | }; |
309 | 309 | |
310 | 310 | foreach ($fields as $fieldName => $fieldNodes) { |
311 | - $promise = $promise->then(function ($resolvedResults) use ( |
|
311 | + $promise = $promise->then(function($resolvedResults) use ( |
|
312 | 312 | $resolve, |
313 | 313 | $fieldName, |
314 | 314 | $path, |
@@ -320,7 +320,7 @@ discard block |
||
320 | 320 | }); |
321 | 321 | } |
322 | 322 | |
323 | - $promise->then(function ($resolvedResults) use (&$finalResults) { |
|
323 | + $promise->then(function($resolvedResults) use (&$finalResults) { |
|
324 | 324 | $finalResults = $resolvedResults ?? []; |
325 | 325 | }); |
326 | 326 | |
@@ -504,7 +504,7 @@ discard block |
||
504 | 504 | if ($this->isPromise($completed)) { |
505 | 505 | $context = $this->context; |
506 | 506 | /** @var ExtendedPromiseInterface $completed */ |
507 | - return $completed->then(null, function ($error) use ($context, $fieldNodes, $path) { |
|
507 | + return $completed->then(null, function($error) use ($context, $fieldNodes, $path) { |
|
508 | 508 | //@TODO Handle $error better |
509 | 509 | if ($error instanceof \Exception) { |
510 | 510 | $context->addError($this->buildLocatedError($error, $fieldNodes, $path)); |
@@ -579,7 +579,7 @@ discard block |
||
579 | 579 | ) { |
580 | 580 | if ($this->isPromise($result)) { |
581 | 581 | /** @var ExtendedPromiseInterface $result */ |
582 | - return $result->then(function (&$value) use ($returnType, $fieldNodes, $info, $path) { |
|
582 | + return $result->then(function(&$value) use ($returnType, $fieldNodes, $info, $path) { |
|
583 | 583 | return $this->completeValue($returnType, $fieldNodes, $info, $path, $value); |
584 | 584 | }); |
585 | 585 | } |
@@ -667,7 +667,7 @@ discard block |
||
667 | 667 | |
668 | 668 | if ($this->isPromise($runtimeType)) { |
669 | 669 | /** @var ExtendedPromiseInterface $runtimeType */ |
670 | - return $runtimeType->then(function ($resolvedRuntimeType) use ( |
|
670 | + return $runtimeType->then(function($resolvedRuntimeType) use ( |
|
671 | 671 | $returnType, |
672 | 672 | $fieldNodes, |
673 | 673 | $info, |
@@ -792,7 +792,7 @@ discard block |
||
792 | 792 | |
793 | 793 | if (!empty($promisedIsTypeOfResults)) { |
794 | 794 | return \React\Promise\all($promisedIsTypeOfResults) |
795 | - ->then(function ($isTypeOfResults) use ($possibleTypes) { |
|
795 | + ->then(function($isTypeOfResults) use ($possibleTypes) { |
|
796 | 796 | foreach ($isTypeOfResults as $index => $result) { |
797 | 797 | if ($result) { |
798 | 798 | return $possibleTypes[$index]; |
@@ -146,7 +146,7 @@ |
||
146 | 146 | */ |
147 | 147 | function locationsShorthandToArray(array $locations): array |
148 | 148 | { |
149 | - return array_map(function ($shorthand) { |
|
149 | + return array_map(function($shorthand) { |
|
150 | 150 | return locationShorthandToArray($shorthand); |
151 | 151 | }, $locations); |
152 | 152 | } |
@@ -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 | }, []); |