Passed
Pull Request — master (#140)
by Christoffer
02:23
created
src/Type/directives.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -129,7 +129,7 @@
 block discarded – undo
129 129
 {
130 130
     return arraySome(
131 131
         specifiedDirectives(),
132
-        function (DirectiveInterface $specifiedDirective) use ($directive) {
132
+        function(DirectiveInterface $specifiedDirective) use ($directive) {
133 133
             return $specifiedDirective->getName() === $directive->getName();
134 134
         }
135 135
     );
Please login to merge, or discard this patch.
src/Language/Reader/StringReader.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@
 block discarded – undo
53 53
             if ($code === 92) {
54 54
                 // \
55 55
                 $value .= sliceString($body, $chunkStart, $pos + 1);
56
-                $code  = charCodeAt($body, $pos);
56
+                $code = charCodeAt($body, $pos);
57 57
 
58 58
                 switch ($code) {
59 59
                     case 34:
Please login to merge, or discard this patch.
src/Cache/RuntimeCache.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -59,7 +59,7 @@
 block discarded – undo
59 59
      */
60 60
     public function getMultiple($keys, $default = null)
61 61
     {
62
-        return array_filter($this->cache, function ($key) use ($keys) {
62
+        return array_filter($this->cache, function($key) use ($keys) {
63 63
             return \in_array($key, $keys, true);
64 64
         }, ARRAY_FILTER_USE_KEY);
65 65
     }
Please login to merge, or discard this patch.
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
             /** @noinspection PhpUndefinedMethodInspection */
77 77
             return $type->getName() === $specifiedScalarType->getName();
78 78
         }
Please login to merge, or discard this patch.
src/Util/TypeInfo.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -78,7 +78,7 @@
 block discarded – undo
78 78
         $this->schema                     = $schema;
79 79
         $this->getFieldDefinitionFunction = null !== $getFieldDefinitionFunction
80 80
             ? $getFieldDefinitionFunction
81
-            : function (SchemaInterface $schema, TypeInterface $parentType, FieldNode $fieldNode) {
81
+            : function(SchemaInterface $schema, TypeInterface $parentType, FieldNode $fieldNode) {
82 82
                 return getFieldDefinition($schema, $parentType, $fieldNode);
83 83
             };
84 84
 
Please login to merge, or discard this patch.
src/Language/Parser.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -434,7 +434,7 @@  discard block
 block discarded – undo
434 434
          * @return mixed
435 435
          * @throws SyntaxErrorException
436 436
          */
437
-        $parseType = function (LexerInterface $lexer) {
437
+        $parseType = function(LexerInterface $lexer) {
438 438
             $this->expect($lexer, TokenKindEnum::COLON);
439 439
             return $this->parseTypeReference($lexer);
440 440
         };
@@ -564,7 +564,7 @@  discard block
 block discarded – undo
564 564
          * @return mixed
565 565
          * @throws SyntaxErrorException
566 566
          */
567
-        $parseValue = function (LexerInterface $lexer) {
567
+        $parseValue = function(LexerInterface $lexer) {
568 568
             $this->expect($lexer, TokenKindEnum::COLON);
569 569
             return $this->parseValueLiteral($lexer, false);
570 570
         };
@@ -591,7 +591,7 @@  discard block
 block discarded – undo
591 591
          * @return mixed
592 592
          * @throws SyntaxErrorException
593 593
          */
594
-        $parseValue = function (LexerInterface $lexer) {
594
+        $parseValue = function(LexerInterface $lexer) {
595 595
             $this->expect($lexer, TokenKindEnum::COLON);
596 596
             return $this->parseConstValue($lexer);
597 597
         };
@@ -652,7 +652,7 @@  discard block
 block discarded – undo
652 652
 
653 653
         $this->expectKeyword($lexer, KeywordEnum::FRAGMENT);
654 654
 
655
-        $parseTypeCondition = function (LexerInterface $lexer) {
655
+        $parseTypeCondition = function(LexerInterface $lexer) {
656 656
             $this->expectKeyword($lexer, 'on');
657 657
             return $this->parseNamedType($lexer);
658 658
         };
@@ -848,7 +848,7 @@  discard block
 block discarded – undo
848 848
     {
849 849
         $start = $lexer->getToken();
850 850
 
851
-        $parseValue = function (LexerInterface $lexer, bool $isConst) {
851
+        $parseValue = function(LexerInterface $lexer, bool $isConst) {
852 852
             $this->expect($lexer, TokenKindEnum::COLON);
853 853
             return $this->parseValueLiteral($lexer, $isConst);
854 854
         };
Please login to merge, or discard this patch.
src/Error/printError.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -62,7 +62,7 @@
 block discarded – undo
62 62
         $line < \count($lines) ? leftPad($padLen, $nextLineNum) . ': ' . $lines[$line] : null,
63 63
     ];
64 64
 
65
-    return implode("\n", array_filter($outputLines, function ($line) {
65
+    return implode("\n", array_filter($outputLines, function($line) {
66 66
         return null !== $line;
67 67
     }));
68 68
 }
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
@@ -59,7 +59,7 @@
 block discarded – undo
59 59
         preg_match_all("/\r\n|[\n\r]/", mb_substr($source->getBody(), 0, $position), $matches, PREG_OFFSET_CAPTURE);
60 60
 
61 61
         foreach ($matches[0] as $index => $match) {
62
-            $line   += 1;
62
+            $line += 1;
63 63
             $column = $position + 1 - ($match[1] + mb_strlen($match[0]));
64 64
         }
65 65
 
Please login to merge, or discard this patch.
src/Validation/ValidationContext.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -143,7 +143,7 @@  discard block
 block discarded – undo
143 143
     public function getFragment(string $name): ?FragmentDefinitionNode
144 144
     {
145 145
         if (empty($this->fragments)) {
146
-            $this->fragments = array_reduce($this->document->getDefinitions(), function ($fragments, $definition) {
146
+            $this->fragments = array_reduce($this->document->getDefinitions(), function($fragments, $definition) {
147 147
                 if ($definition instanceof FragmentDefinitionNode) {
148 148
                     $fragments[$definition->getNameValue()] = $definition;
149 149
                 }
@@ -221,7 +221,7 @@  discard block
 block discarded – undo
221 221
             $usages   = [];
222 222
             $typeInfo = new TypeInfo($this->schema);
223 223
             $visitor  = new TypeInfoVisitor($typeInfo, new Visitor(
224
-                function (NodeInterface $node) use (&$usages, $typeInfo): ?NodeInterface {
224
+                function(NodeInterface $node) use (&$usages, $typeInfo): ?NodeInterface {
225 225
                     if ($node instanceof VariableDefinitionNode) {
226 226
                         return null;
227 227
                     }
Please login to merge, or discard this patch.