Passed
Pull Request — master (#351)
by Kirill
02:55
created
src/Type/scalars.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -72,7 +72,7 @@
 block discarded – undo
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
     );
Please login to merge, or discard this patch.
src/Language/Visitor/TypeInfoVisitor.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -106,7 +106,7 @@
 block discarded – undo
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
                 );
Please login to merge, or discard this patch.
src/Validation/messages.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -218,7 +218,7 @@
 block discarded – undo
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));
Please login to merge, or discard this patch.
src/Validation/Rule/ValuesOfCorrectTypeRule.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -114,7 +114,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 
Please login to merge, or discard this patch.
src/Validation/Rule/FieldOnCorrectTypeRule.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -104,7 +104,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
src/Validation/Rule/KnownDirectivesRule.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@
 block discarded – undo
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
         );
Please login to merge, or discard this patch.
src/Validation/Rule/NoFragmentCyclesRule.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -101,7 +101,7 @@
 block discarded – undo
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])
Please login to merge, or discard this patch.
src/Error/helpers.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -104,7 +104,7 @@
 block discarded – undo
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
 }
Please login to merge, or discard this patch.
src/Language/utils.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -146,7 +146,7 @@
 block discarded – undo
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
 }
Please login to merge, or discard this patch.