@@ -72,7 +72,7 @@ |
||
72 | 72 | { |
73 | 73 | return arraySome( |
74 | 74 | specifiedScalarTypes(), |
75 | - function (ScalarType $specifiedScalarType) use ($type) { |
|
75 | + function(ScalarType $specifiedScalarType) use ($type) { |
|
76 | 76 | return $type->getName() === $specifiedScalarType->getName(); |
77 | 77 | } |
78 | 78 | ); |
@@ -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 | ); |
@@ -218,7 +218,7 @@ |
||
218 | 218 | return conflictReasonMessage([$reason]); |
219 | 219 | } |
220 | 220 | |
221 | - return implode(' and ', array_map(function ($reason) { |
|
221 | + return implode(' and ', array_map(function($reason) { |
|
222 | 222 | [$responseName, $subreason] = $reason; |
223 | 223 | return sprintf('subfields "%s" conflict because %s', $responseName, conflictReasonMessage($subreason)); |
224 | 224 | }, $reason)); |
@@ -114,7 +114,7 @@ discard block |
||
114 | 114 | |
115 | 115 | // Ensure every required field exists. |
116 | 116 | $inputFields = $type->getFields(); |
117 | - $fieldNodeMap = keyMap($node->getFields(), function (ObjectFieldNode $field) { |
|
117 | + $fieldNodeMap = keyMap($node->getFields(), function(ObjectFieldNode $field) { |
|
118 | 118 | return $field->getNameValue(); |
119 | 119 | }); |
120 | 120 | |
@@ -261,7 +261,7 @@ discard block |
||
261 | 261 | protected function getEnumTypeSuggestion(NamedTypeInterface $type, ValueNodeInterface $node): ?string |
262 | 262 | { |
263 | 263 | if ($type instanceof EnumType) { |
264 | - $suggestions = suggestionList(printNode($node), \array_map(function (EnumValue $value) { |
|
264 | + $suggestions = suggestionList(printNode($node), \array_map(function(EnumValue $value) { |
|
265 | 265 | return $value->getName(); |
266 | 266 | }, $type->getValues())); |
267 | 267 |
@@ -104,7 +104,7 @@ |
||
104 | 104 | |
105 | 105 | $suggestedInterfaceTypes = \array_keys($interfaceUsageCount); |
106 | 106 | |
107 | - \uasort($suggestedInterfaceTypes, function ($a, $b) use ($interfaceUsageCount) { |
|
107 | + \uasort($suggestedInterfaceTypes, function($a, $b) use ($interfaceUsageCount) { |
|
108 | 108 | return $interfaceUsageCount[$b] - $interfaceUsageCount[$a]; |
109 | 109 | }); |
110 | 110 |
@@ -49,7 +49,7 @@ |
||
49 | 49 | /** @var Directive $directiveDefinition */ |
50 | 50 | $directiveDefinition = find( |
51 | 51 | $this->context->getSchema()->getDirectives(), |
52 | - function (Directive $definition) use ($node) { |
|
52 | + function(Directive $definition) use ($node) { |
|
53 | 53 | return $definition->getName() === $node->getNameValue(); |
54 | 54 | } |
55 | 55 | ); |
@@ -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]) |
@@ -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 | } |
@@ -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 | } |