Passed
Pull Request — master (#186)
by Sebastian
02:40
created
src/Language/ASTBuilder/ArgumentsDefinitionASTBuilder.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
      */
21 21
     public function build(LexerInterface $lexer, array $params): ?array
22 22
     {
23
-        $parseFunction = function (LexerInterface $lexer): array {
23
+        $parseFunction = function(LexerInterface $lexer): array {
24 24
             return $this->buildAST(ASTKindEnum::INPUT_VALUE_DEFINITION, $lexer);
25 25
         };
26 26
 
Please login to merge, or discard this patch.
src/Language/ASTBuilder/VariableDefinitionASTBuilder.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@
 block discarded – undo
41 41
          * @return mixed
42 42
          * @throws SyntaxErrorException
43 43
          */
44
-        $parseType = function (LexerInterface $lexer) {
44
+        $parseType = function(LexerInterface $lexer) {
45 45
             $this->expect($lexer, TokenKindEnum::COLON);
46 46
             return $this->buildAST(ASTKindEnum::TYPE_REFERENCE, $lexer);
47 47
         };
Please login to merge, or discard this patch.
src/Language/ASTBuilder/InputFieldsDefinitionASTBuilder.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
      */
21 21
     public function build(LexerInterface $lexer, array $params): ?array
22 22
     {
23
-        $parseFunction = function (LexerInterface $lexer): array {
23
+        $parseFunction = function(LexerInterface $lexer): array {
24 24
             return $this->buildAST(ASTKindEnum::INPUT_VALUE_DEFINITION, $lexer);
25 25
         };
26 26
 
Please login to merge, or discard this patch.
src/Language/ASTBuilder/ArgumentsASTBuilder.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
          * @return mixed
53 53
          * @throws SyntaxErrorException
54 54
          */
55
-        $parseValue = function (LexerInterface $lexer) {
55
+        $parseValue = function(LexerInterface $lexer) {
56 56
             $this->expect($lexer, TokenKindEnum::COLON);
57 57
             return $this->buildAST(ASTKindEnum::VALUE_LITERAL, $lexer);
58 58
         };
@@ -79,7 +79,7 @@  discard block
 block discarded – undo
79 79
          * @return mixed
80 80
          * @throws SyntaxErrorException
81 81
          */
82
-        $parseValue = function (LexerInterface $lexer) {
82
+        $parseValue = function(LexerInterface $lexer) {
83 83
             $this->expect($lexer, TokenKindEnum::COLON);
84 84
             return $this->buildAST(ASTKindEnum::VALUE_LITERAL, $lexer);
85 85
         };
Please login to merge, or discard this patch.
src/Language/ASTBuilder/ValueLiteralASTBuilder.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -176,7 +176,7 @@
 block discarded – undo
176 176
     {
177 177
         $start = $lexer->getToken();
178 178
 
179
-        $parseValue = function (LexerInterface $lexer, bool $isConst) {
179
+        $parseValue = function(LexerInterface $lexer, bool $isConst) {
180 180
             $this->expect($lexer, TokenKindEnum::COLON);
181 181
 
182 182
             return $this->parseValueLiteral($lexer, $isConst);
Please login to merge, or discard this patch.
src/Execution/ExecutionStrategy.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -251,7 +251,7 @@  discard block
 block discarded – undo
251 251
         if ($isContainsPromise) {
252 252
             $keys    = array_keys($finalResults);
253 253
             $promise = \React\Promise\all(array_values($finalResults));
254
-            $promise->then(function ($values) use ($keys, &$finalResults) {
254
+            $promise->then(function($values) use ($keys, &$finalResults) {
255 255
                 foreach ($values as $i => $value) {
256 256
                     $finalResults[$keys[$i]] = $value;
257 257
                 }
@@ -285,7 +285,7 @@  discard block
 block discarded – undo
285 285
 
286 286
         $promise = new \React\Promise\FulfilledPromise([]);
287 287
 
288
-        $resolve = function ($results, $fieldName, $path, $objectType, $rootValue, $fieldNodes) {
288
+        $resolve = function($results, $fieldName, $path, $objectType, $rootValue, $fieldNodes) {
289 289
             $fieldPath   = $path;
290 290
             $fieldPath[] = $fieldName;
291 291
             try {
@@ -296,7 +296,7 @@  discard block
 block discarded – undo
296 296
 
297 297
             if ($this->isPromise($result)) {
298 298
                 /** @var ExtendedPromiseInterface $result */
299
-                return $result->then(function ($resolvedResult) use ($fieldName, $results) {
299
+                return $result->then(function($resolvedResult) use ($fieldName, $results) {
300 300
                     $results[$fieldName] = $resolvedResult;
301 301
                     return $results;
302 302
                 });
@@ -308,7 +308,7 @@  discard block
 block discarded – undo
308 308
         };
309 309
 
310 310
         foreach ($fields as $fieldName => $fieldNodes) {
311
-            $promise = $promise->then(function ($resolvedResults) use (
311
+            $promise = $promise->then(function($resolvedResults) use (
312 312
                 $resolve,
313 313
                 $fieldName,
314 314
                 $path,
@@ -320,7 +320,7 @@  discard block
 block discarded – undo
320 320
             });
321 321
         }
322 322
 
323
-        $promise->then(function ($resolvedResults) use (&$finalResults) {
323
+        $promise->then(function($resolvedResults) use (&$finalResults) {
324 324
             $finalResults = $resolvedResults ?? [];
325 325
         });
326 326
 
@@ -504,7 +504,7 @@  discard block
 block discarded – undo
504 504
             if ($this->isPromise($completed)) {
505 505
                 $context = $this->context;
506 506
                 /** @var ExtendedPromiseInterface $completed */
507
-                return $completed->then(null, function ($error) use ($context, $fieldNodes, $path) {
507
+                return $completed->then(null, function($error) use ($context, $fieldNodes, $path) {
508 508
                     //@TODO Handle $error better
509 509
                     if ($error instanceof \Exception) {
510 510
                         $context->addError($this->buildLocatedError($error, $fieldNodes, $path));
@@ -579,7 +579,7 @@  discard block
 block discarded – undo
579 579
     ) {
580 580
         if ($this->isPromise($result)) {
581 581
             /** @var ExtendedPromiseInterface $result */
582
-            return $result->then(function (&$value) use ($returnType, $fieldNodes, $info, $path) {
582
+            return $result->then(function(&$value) use ($returnType, $fieldNodes, $info, $path) {
583 583
                 return $this->completeValue($returnType, $fieldNodes, $info, $path, $value);
584 584
             });
585 585
         }
@@ -667,7 +667,7 @@  discard block
 block discarded – undo
667 667
 
668 668
         if ($this->isPromise($runtimeType)) {
669 669
             /** @var ExtendedPromiseInterface $runtimeType */
670
-            return $runtimeType->then(function ($resolvedRuntimeType) use (
670
+            return $runtimeType->then(function($resolvedRuntimeType) use (
671 671
                 $returnType,
672 672
                 $fieldNodes,
673 673
                 $info,
@@ -792,7 +792,7 @@  discard block
 block discarded – undo
792 792
 
793 793
         if (!empty($promisedIsTypeOfResults)) {
794 794
             return \React\Promise\all($promisedIsTypeOfResults)
795
-                ->then(function ($isTypeOfResults) use ($possibleTypes) {
795
+                ->then(function($isTypeOfResults) use ($possibleTypes) {
796 796
                     foreach ($isTypeOfResults as $index => $result) {
797 797
                         if ($result) {
798 798
                             return $possibleTypes[$index];
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/Execution/ValuesHelper.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
             return $coercedValues;
63 63
         }
64 64
 
65
-        $argumentNodeMap = keyMap($argumentNodes, function (ArgumentNode $value) {
65
+        $argumentNodeMap = keyMap($argumentNodes, function(ArgumentNode $value) {
66 66
             return $value->getNameValue();
67 67
         });
68 68
 
@@ -133,7 +133,7 @@  discard block
 block discarded – undo
133 133
         array $variableValues = []
134 134
     ): ?array {
135 135
         $directiveNode = $node->hasDirectives()
136
-            ? find($node->getDirectives(), function (NameAwareInterface $value) use ($directive) {
136
+            ? find($node->getDirectives(), function(NameAwareInterface $value) use ($directive) {
137 137
                 return $value->getNameValue() === $directive->getName();
138 138
             }) : null;
139 139
 
Please login to merge, or discard this patch.
src/Util/utils.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
 
33 33
     return $count === 1
34 34
         ? $selected[0]
35
-        : \array_reduce($selected, function ($list, $item) use ($count, &$index) {
35
+        : \array_reduce($selected, function($list, $item) use ($count, &$index) {
36 36
             $list .= ($index > 0 && $index < ($count - 1) ? ', ' : '') . ($index === ($count - 1) ? ' or ' : '') .
37 37
                 $item;
38 38
             $index++;
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
 
67 67
     $result = \array_keys($optionsByDistance);
68 68
 
69
-    \usort($result, function ($a, $b) use ($optionsByDistance) {
69
+    \usort($result, function($a, $b) use ($optionsByDistance) {
70 70
         return $optionsByDistance[$a] - $optionsByDistance[$b];
71 71
     });
72 72
 
@@ -81,7 +81,7 @@  discard block
 block discarded – undo
81 81
  */
82 82
 function quotedOrList(array $items): string
83 83
 {
84
-    return orList(array_map(function ($item) {
84
+    return orList(array_map(function($item) {
85 85
         return '"' . $item . '"';
86 86
     }, $items));
87 87
 }
@@ -95,7 +95,7 @@  discard block
 block discarded – undo
95 95
  */
96 96
 function arrayEvery(array $array, callable $fn): bool
97 97
 {
98
-    return array_reduce($array, function ($result, $value) use ($fn) {
98
+    return array_reduce($array, function($result, $value) use ($fn) {
99 99
         return $result && $fn($value);
100 100
     }, true);
101 101
 }
@@ -107,7 +107,7 @@  discard block
 block discarded – undo
107 107
  */
108 108
 function arraySome(array $array, callable $fn)
109 109
 {
110
-    return array_reduce($array, function ($result, $value) use ($fn) {
110
+    return array_reduce($array, function($result, $value) use ($fn) {
111 111
         return $result || $fn($value);
112 112
     });
113 113
 }
@@ -135,7 +135,7 @@  discard block
 block discarded – undo
135 135
  */
136 136
 function keyMap(array $array, callable $keyFn): array
137 137
 {
138
-    return array_reduce($array, function ($map, $item) use ($keyFn) {
138
+    return array_reduce($array, function($map, $item) use ($keyFn) {
139 139
         $map[$keyFn($item)] = $item;
140 140
         return $map;
141 141
     }, []);
@@ -149,7 +149,7 @@  discard block
 block discarded – undo
149 149
  */
150 150
 function keyValueMap(array $array, callable $keyFn, callable $valFn): array
151 151
 {
152
-    return array_reduce($array, function ($map, $item) use ($keyFn, $valFn) {
152
+    return array_reduce($array, function($map, $item) use ($keyFn, $valFn) {
153 153
         $map[$keyFn($item)] = $valFn($item);
154 154
         return $map;
155 155
     }, []);
Please login to merge, or discard this patch.