Passed
Pull Request — master (#200)
by Quang
02:36
created
src/Language/Node/InterfacesTrait.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
33 33
      */
34 34
     public function getInterfacesAsArray(): array
35 35
     {
36
-        return \array_map(function (SerializationInterface $node) {
36
+        return \array_map(function(SerializationInterface $node) {
37 37
             return $node->toArray();
38 38
         }, $this->interfaces);
39 39
     }
Please login to merge, or discard this patch.
src/Language/Node/FieldsTrait.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
33 33
      */
34 34
     public function getFieldsAsArray(): array
35 35
     {
36
-        return \array_map(function (SerializationInterface $node) {
36
+        return \array_map(function(SerializationInterface $node) {
37 37
             return $node->toArray();
38 38
         }, $this->fields);
39 39
     }
Please login to merge, or discard this patch.
src/Language/Node/ObjectValueNode.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
33 33
      */
34 34
     public function getFieldsAsArray(): array
35 35
     {
36
-        return \array_map(function (SerializationInterface $node) {
36
+        return \array_map(function(SerializationInterface $node) {
37 37
             return $node->toArray();
38 38
         }, $this->fields);
39 39
     }
Please login to merge, or discard this patch.
src/Language/Node/DirectivesTrait.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
30 30
      */
31 31
     public function getDirectivesAsArray(): array
32 32
     {
33
-        return \array_map(function (DirectiveNode $directive) {
33
+        return \array_map(function(DirectiveNode $directive) {
34 34
             return $directive->toArray();
35 35
         }, $this->directives);
36 36
     }
Please login to merge, or discard this patch.
src/Language/Parser.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -321,7 +321,7 @@  discard block
 block discarded – undo
321 321
         /**
322 322
          * @return TypeNodeInterface
323 323
          */
324
-        $parseType = function (): TypeNodeInterface {
324
+        $parseType = function(): TypeNodeInterface {
325 325
             $this->expect(TokenKindEnum::COLON);
326 326
             return $this->parseTypeReference();
327 327
         };
@@ -432,7 +432,7 @@  discard block
 block discarded – undo
432 432
         /**
433 433
          * @return ArgumentNode
434 434
          */
435
-        $parseFunction = function () use ($isConst): ArgumentNode {
435
+        $parseFunction = function() use ($isConst) : ArgumentNode {
436 436
             return $this->parseArgument($isConst);
437 437
         };
438 438
 
@@ -459,7 +459,7 @@  discard block
 block discarded – undo
459 459
         /**
460 460
          * @return NodeInterface|TypeNodeInterface|ValueNodeInterface
461 461
          */
462
-        $parseValue = function () use ($isConst): NodeInterface {
462
+        $parseValue = function() use ($isConst): NodeInterface {
463 463
             $this->expect(TokenKindEnum::COLON);
464 464
             return $this->parseValueLiteral($isConst);
465 465
         };
@@ -528,7 +528,7 @@  discard block
 block discarded – undo
528 528
 
529 529
         $this->expectKeyword(KeywordEnum::FRAGMENT);
530 530
 
531
-        $parseTypeCondition = function () {
531
+        $parseTypeCondition = function() {
532 532
             $this->expectKeyword(KeywordEnum::ON);
533 533
             return $this->parseNamedType();
534 534
         };
@@ -657,7 +657,7 @@  discard block
 block discarded – undo
657 657
     {
658 658
         $start = $this->lexer->getToken();
659 659
 
660
-        $parseFunction = function () use ($isConst) {
660
+        $parseFunction = function() use ($isConst) {
661 661
             return $this->parseValueLiteral($isConst);
662 662
         };
663 663
 
@@ -710,7 +710,7 @@  discard block
 block discarded – undo
710 710
          * @param bool $isConst
711 711
          * @return NodeInterface|TypeNodeInterface|ValueNodeInterface
712 712
          */
713
-        $parseValue = function (bool $isConst): NodeInterface {
713
+        $parseValue = function(bool $isConst): NodeInterface {
714 714
             $this->expect(TokenKindEnum::COLON);
715 715
             return $this->parseValueLiteral($isConst);
716 716
         };
@@ -1053,7 +1053,7 @@  discard block
 block discarded – undo
1053 1053
      */
1054 1054
     protected function parseArgumentsDefinition(): array
1055 1055
     {
1056
-        $parseFunction = function (): InputValueDefinitionNode {
1056
+        $parseFunction = function(): InputValueDefinitionNode {
1057 1057
             return $this->parseInputValueDefinition();
1058 1058
         };
1059 1059
 
@@ -1259,7 +1259,7 @@  discard block
 block discarded – undo
1259 1259
      */
1260 1260
     protected function parseInputFieldsDefinition(): array
1261 1261
     {
1262
-        $parseFunction = function (): InputValueDefinitionNode {
1262
+        $parseFunction = function(): InputValueDefinitionNode {
1263 1263
             return $this->parseInputValueDefinition();
1264 1264
         };
1265 1265
 
@@ -1563,7 +1563,7 @@  discard block
 block discarded – undo
1563 1563
 
1564 1564
         $name = $this->parseName();
1565 1565
 
1566
-        if (arraySome(DirectiveLocationEnum::values(), function ($value) use ($name) {
1566
+        if (arraySome(DirectiveLocationEnum::values(), function($value) use ($name) {
1567 1567
             return $name->getValue() === $value;
1568 1568
         })) {
1569 1569
             return $name;
Please login to merge, or discard this patch.
src/Execution/Executor.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/Lexer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -578,7 +578,7 @@
 block discarded – undo
578 578
             if ($this->isEscapedTripleQuote($code)) {
579 579
                 $rawValue       .= sliceString($this->body, $chunkStart, $this->position) . '"""';
580 580
                 $this->position += 4;
581
-                $chunkStart     = $this->position;
581
+                $chunkStart = $this->position;
582 582
             } else {
583 583
                 ++$this->position;
584 584
             }
Please login to merge, or discard this patch.