Passed
Pull Request — master (#284)
by Quang
02:16
created
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.
src/Schema/Validation/SchemaValidator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
src/Schema/Validation/Rule/TypesRule.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -316,7 +316,7 @@  discard block
 block discarded – undo
316 316
             // Assert each interface field arg is implemented.
317 317
             foreach ($interfaceField->getArguments() as $interfaceArgument) {
318 318
                 $argumentName   = $interfaceArgument->getName();
319
-                $objectArgument = find($objectField->getArguments(), function (Argument $argument) use ($argumentName) {
319
+                $objectArgument = find($objectField->getArguments(), function(Argument $argument) use ($argumentName) {
320 320
                     return $argument->getName() === $argumentName;
321 321
                 });
322 322
 
@@ -375,7 +375,7 @@  discard block
 block discarded – undo
375 375
                     $argumentName      = $objectArgument->getName();
376 376
                     $interfaceArgument = find(
377 377
                         $interfaceField->getArguments(),
378
-                        function (Argument $argument) use ($argumentName) {
378
+                        function(Argument $argument) use ($argumentName) {
379 379
                             return $argument->getName() === $argumentName;
380 380
                         }
381 381
                     );
@@ -714,7 +714,7 @@  discard block
 block discarded – undo
714 714
             return null;
715 715
         }
716 716
 
717
-        return \array_filter($node->getTypes(), function (NamedTypeNode $type) use ($memberTypeName) {
717
+        return \array_filter($node->getTypes(), function(NamedTypeNode $type) use ($memberTypeName) {
718 718
             return $type->getNameValue() === $memberTypeName;
719 719
         });
720 720
     }
@@ -733,7 +733,7 @@  discard block
 block discarded – undo
733 733
             return null;
734 734
         }
735 735
 
736
-        return \array_filter($node->getValues(), function (NameAwareInterface $type) use ($valueName) {
736
+        return \array_filter($node->getValues(), function(NameAwareInterface $type) use ($valueName) {
737 737
             return $type->getNameValue() === $valueName;
738 738
         });
739 739
     }
Please login to merge, or discard this patch.
src/Type/DirectivesProvider.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
      */
27 27
     public function register()
28 28
     {
29
-        $this->container->add(GraphQL::INCLUDE_DIRECTIVE, function () {
29
+        $this->container->add(GraphQL::INCLUDE_DIRECTIVE, function() {
30 30
             return newDirective([
31 31
                 'name'        => 'include',
32 32
                 'description' =>
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
46 46
             ]);
47 47
         }, true/* $shared */);
48 48
 
49
-        $this->container->add(GraphQL::SKIP_DIRECTIVE, function () {
49
+        $this->container->add(GraphQL::SKIP_DIRECTIVE, function() {
50 50
             return newDirective([
51 51
                 'name'        => 'skip',
52 52
                 'description' =>
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
             ]);
67 67
         }, true/* $shared */);
68 68
 
69
-        $this->container->add(GraphQL::DEPRECATED_DIRECTIVE, function () {
69
+        $this->container->add(GraphQL::DEPRECATED_DIRECTIVE, function() {
70 70
             return newDirective([
71 71
                 'name'        => 'deprecated',
72 72
                 'description' => 'Marks an element of a GraphQL schema as no longer supported.',
Please login to merge, or discard this patch.
src/Validation/Validator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@
 block discarded – undo
46 46
 
47 47
         $context = $this->createContext($schema, $document, $typeInfo);
48 48
 
49
-        $visitors = \array_map(function (RuleInterface $rule) use ($context) {
49
+        $visitors = \array_map(function(RuleInterface $rule) use ($context) {
50 50
             return $rule->setContext($context);
51 51
         }, $rules);
52 52
 
Please login to merge, or discard this patch.
src/Schema/Resolver/AbstractResolver.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
25 25
      */
26 26
     public function getTypeResolver(): ?callable
27 27
     {
28
-        return function ($rootValue, $contextValues, ResolveInfo $info) {
28
+        return function($rootValue, $contextValues, ResolveInfo $info) {
29 29
             return $this->resolveType($rootValue, $contextValues, $info);
30 30
         };
31 31
     }
Please login to merge, or discard this patch.
src/Language/SourceLocation.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -61,7 +61,7 @@
 block discarded – undo
61 61
         \preg_match_all("/\r\n|[\n\r]/", \substr($source->getBody(), 0, $position), $matches, PREG_OFFSET_CAPTURE);
62 62
 
63 63
         foreach ($matches[0] as $index => $match) {
64
-            $line   += 1;
64
+            $line += 1;
65 65
             $column = $position + 1 - ($match[1] + \strlen($match[0]));
66 66
         }
67 67
 
Please login to merge, or discard this patch.