@@ -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]) |
@@ -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 | } |
@@ -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 | }, []); |
@@ -92,7 +92,7 @@ |
||
| 92 | 92 | // If both types are abstract, then determine if there is any intersection |
| 93 | 93 | // between possible concrete types of each. |
| 94 | 94 | return arraySome($schema->getPossibleTypes($typeA), |
| 95 | - function (TypeInterface $type) use ($schema, $typeB) { |
|
| 95 | + function(TypeInterface $type) use ($schema, $typeB) { |
|
| 96 | 96 | return $schema->isPossibleType($typeB, $type); |
| 97 | 97 | }); |
| 98 | 98 | } |
@@ -126,7 +126,7 @@ discard block |
||
| 126 | 126 | */ |
| 127 | 127 | public function getDirective(string $name): ?Directive |
| 128 | 128 | { |
| 129 | - return find($this->directives, function (Directive $directive) use ($name) { |
|
| 129 | + return find($this->directives, function(Directive $directive) use ($name) { |
|
| 130 | 130 | return $directive->getName() === $name; |
| 131 | 131 | }); |
| 132 | 132 | } |
@@ -179,7 +179,7 @@ discard block |
||
| 179 | 179 | ); |
| 180 | 180 | |
| 181 | 181 | $this->possibleTypesMap[$abstractTypeName] = \array_reduce($possibleTypes, |
| 182 | - function (array $map, TypeInterface $type) { |
|
| 182 | + function(array $map, TypeInterface $type) { |
|
| 183 | 183 | /** @var NameAwareInterface $type */ |
| 184 | 184 | $map[$type->getName()] = true; |
| 185 | 185 | return $map; |
@@ -384,7 +384,7 @@ discard block |
||
| 384 | 384 | if ($type instanceof ObjectType || $type instanceof InterfaceType) { |
| 385 | 385 | foreach ($type->getFields() as $field) { |
| 386 | 386 | if ($field->hasArguments()) { |
| 387 | - $fieldArgTypes = \array_map(function (Argument $argument) { |
|
| 387 | + $fieldArgTypes = \array_map(function(Argument $argument) { |
|
| 388 | 388 | return $argument->getType(); |
| 389 | 389 | }, $field->getArguments()); |
| 390 | 390 | |
@@ -418,7 +418,7 @@ discard block |
||
| 418 | 418 | return $map; |
| 419 | 419 | } |
| 420 | 420 | |
| 421 | - return \array_reduce($directive->getArguments(), function ($map, Argument $argument) { |
|
| 421 | + return \array_reduce($directive->getArguments(), function($map, Argument $argument) { |
|
| 422 | 422 | return $this->typeMapReducer($map, $argument->getType()); |
| 423 | 423 | }, $map); |
| 424 | 424 | } |
@@ -50,7 +50,7 @@ |
||
| 50 | 50 | $errors = $this->validate($schema); |
| 51 | 51 | |
| 52 | 52 | if (!empty($errors)) { |
| 53 | - $message = \implode("\n", \array_map(function (SchemaValidationException $error) { |
|
| 53 | + $message = \implode("\n", \array_map(function(SchemaValidationException $error) { |
|
| 54 | 54 | return $error->getMessage(); |
| 55 | 55 | }, $errors)); |
| 56 | 56 | |