Passed
Pull Request — master (#118)
by Christoffer
02:13
created
src/SchemaValidator/Rule/RootTypesRule.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -89,7 +89,7 @@
 block discarded – undo
89 89
         /** @var OperationTypeDefinitionNode $operationTypeNode */
90 90
         $operationTypeNode = find(
91 91
             $node->getOperationTypes(),
92
-            function (OperationTypeDefinitionNode $operationType) use ($operation) {
92
+            function(OperationTypeDefinitionNode $operationType) use ($operation) {
93 93
                 return $operationType->getOperation() === $operation;
94 94
             }
95 95
         );
Please login to merge, or discard this patch.
src/Type/Schema.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -125,7 +125,7 @@  discard block
 block discarded – undo
125 125
      */
126 126
     public function getDirective(string $name): ?Directive
127 127
     {
128
-        return find($this->directives, function (Directive $directive) use ($name) {
128
+        return find($this->directives, function(Directive $directive) use ($name) {
129 129
             return $directive->getName() === $name;
130 130
         });
131 131
     }
@@ -178,7 +178,7 @@  discard block
 block discarded – undo
178 178
             );
179 179
 
180 180
             $this->_possibleTypeMap[$abstractTypeName] = array_reduce($possibleTypes,
181
-                function (array $map, TypeInterface $type) {
181
+                function(array $map, TypeInterface $type) {
182 182
                     $map[$type->getName()] = true;
183 183
                     return $map;
184 184
                 }, []);
@@ -389,7 +389,7 @@  discard block
 block discarded – undo
389 389
     if ($type instanceof ObjectType || $type instanceof InterfaceType) {
390 390
         foreach ($type->getFields() as $field) {
391 391
             if ($field->hasArguments()) {
392
-                $fieldArgTypes = array_map(function (Argument $argument) {
392
+                $fieldArgTypes = array_map(function(Argument $argument) {
393 393
                     return $argument->getType();
394 394
                 }, $field->getArguments());
395 395
 
@@ -423,7 +423,7 @@  discard block
 block discarded – undo
423 423
         return $map;
424 424
     }
425 425
 
426
-    return array_reduce($directive->getArguments(), function ($map, Argument $argument) {
426
+    return array_reduce($directive->getArguments(), function($map, Argument $argument) {
427 427
         return typeMapReducer($map, $argument->getType());
428 428
     }, $map);
429 429
 }
Please login to merge, or discard this patch.
src/SchemaValidator/SchemaValidator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
src/SchemaValidator/Rule/TypesRule.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -307,7 +307,7 @@  discard block
 block discarded – undo
307 307
             // Assert each interface field arg is implemented.
308 308
             foreach ($interfaceField->getArguments() as $interfaceArgument) {
309 309
                 $argumentName   = $interfaceArgument->getName();
310
-                $objectArgument = find($objectField->getArguments(), function (Argument $argument) use ($argumentName) {
310
+                $objectArgument = find($objectField->getArguments(), function(Argument $argument) use ($argumentName) {
311 311
                     return $argument->getName() === $argumentName;
312 312
                 });
313 313
 
@@ -365,7 +365,7 @@  discard block
 block discarded – undo
365 365
                 foreach ($objectFields as $objectArgument) {
366 366
                     $argumentName      = $objectArgument->getName();
367 367
                     $interfaceArgument = find($interfaceField->getArguments(),
368
-                        function (Argument $argument) use ($argumentName) {
368
+                        function(Argument $argument) use ($argumentName) {
369 369
                             return $argument->getName() === $argumentName;
370 370
                         });
371 371
 
@@ -700,7 +700,7 @@  discard block
 block discarded – undo
700 700
             return null;
701 701
         }
702 702
 
703
-        return \array_filter($node->getTypes(), function (NamedTypeNode $type) use ($memberTypeName) {
703
+        return \array_filter($node->getTypes(), function(NamedTypeNode $type) use ($memberTypeName) {
704 704
             return $type->getNameValue() === $memberTypeName;
705 705
         });
706 706
     }
@@ -719,7 +719,7 @@  discard block
 block discarded – undo
719 719
             return null;
720 720
         }
721 721
 
722
-        return \array_filter($node->getValues(), function (NamedTypeNode $type) use ($valueName) {
722
+        return \array_filter($node->getValues(), function(NamedTypeNode $type) use ($valueName) {
723 723
             return $type->getNameValue() === $valueName;
724 724
         });
725 725
     }
Please login to merge, or discard this patch.
src/Error/GraphQLException.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -152,7 +152,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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());
Please login to merge, or discard this patch.