Completed
Pull Request — master (#204)
by Ryan
11:34
created
Tests/Issues/Issue131/Issue131Test.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@  discard block
 block discarded – undo
9 9
  * http://opensource.org/licenses/MIT
10 10
  */
11 11
 
12
-declare(strict_types=1);
12
+declare(strict_types = 1);
13 13
 
14 14
 namespace Youshido\Tests\Issues\Issue116Test;
15 15
 
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
                                 ],
54 54
                             ])),
55 55
                         ],
56
-                        'resolve' => static function ($source, $args) {
56
+                        'resolve' => static function($source, $args) {
57 57
                             return [
58 58
                                 'id'   => '1',
59 59
                                 'name' => \sprintf('Meeting with %d beans', \count($args['related_beans'])),
Please login to merge, or discard this patch.
Tests/Issues/Issue99/Issue99Test.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
  * http://opensource.org/licenses/MIT
10 10
  */
11 11
 
12
-declare(strict_types=1);
12
+declare(strict_types = 1);
13 13
 
14 14
 namespace Youshido\Tests\Issues\Issue99;
15 15
 
Please login to merge, or discard this patch.
Tests/Issues/Issue99/Issue99Schema.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@  discard block
 block discarded – undo
9 9
  * http://opensource.org/licenses/MIT
10 10
  */
11 11
 
12
-declare(strict_types=1);
12
+declare(strict_types = 1);
13 13
 
14 14
 namespace Youshido\Tests\Issues\Issue99;
15 15
 
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
                                             ])),
52 52
                                         ],
53 53
                                     ],
54
-                                    'resolve' => static function ($source, $args) {
54
+                                    'resolve' => static function($source, $args) {
55 55
                                         $x = $args['argX']['x'] ?? Issue99Test::BUG_EXISTS_VALUE;
56 56
 
57 57
                                         return [
@@ -64,7 +64,7 @@  discard block
 block discarded – undo
64 64
                         'args' => [
65 65
                             'example' => new StringType(),
66 66
                         ],
67
-                        'resolve' => static function () {
67
+                        'resolve' => static function() {
68 68
                             return [
69 69
                                 ['id' => 1],
70 70
                                 ['id' => 2],
Please login to merge, or discard this patch.
Tests/Issues/Issue171/Issue171Schema.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
  * http://opensource.org/licenses/MIT
10 10
  */
11 11
 
12
-declare(strict_types=1);
12
+declare(strict_types = 1);
13 13
 
14 14
 namespace Youshido\Tests\Issues\Issue171;
15 15
 
Please login to merge, or discard this patch.
Tests/Issues/Issue171/Issue171Test.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@  discard block
 block discarded – undo
9 9
  * http://opensource.org/licenses/MIT
10 10
  */
11 11
 
12
-declare(strict_types=1);
12
+declare(strict_types = 1);
13 13
 
14 14
 namespace Youshido\Tests\Issues\Issue171;
15 15
 
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
         $processor->processPayload($this->getIntrospectionQuery(), []);
26 26
         $resp = $processor->getResponseData();
27 27
 
28
-        $enumTypes = \array_filter($resp['data']['__schema']['types'], static function ($type) {
28
+        $enumTypes = \array_filter($resp['data']['__schema']['types'], static function($type) {
29 29
             return 'ENUM' === $type['kind'];
30 30
         });
31 31
 
Please login to merge, or discard this patch.
Tests/Parser/RequestTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
  * http://opensource.org/licenses/MIT
10 10
  */
11 11
 
12
-declare(strict_types=1);
12
+declare(strict_types = 1);
13 13
 /*
14 14
  * This file is a part of GraphQL project.
15 15
  *
Please login to merge, or discard this patch.
Tests/Parser/AstTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
  * http://opensource.org/licenses/MIT
10 10
  */
11 11
 
12
-declare(strict_types=1);
12
+declare(strict_types = 1);
13 13
 /**
14 14
  * Date: 13.05.16.
15 15
  */
Please login to merge, or discard this patch.
Tests/Parser/ParserTest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@  discard block
 block discarded – undo
9 9
  * http://opensource.org/licenses/MIT
10 10
  */
11 11
 
12
-declare(strict_types=1);
12
+declare(strict_types = 1);
13 13
 /**
14 14
  * Date: 01.12.15.
15 15
  */
@@ -920,7 +920,7 @@  discard block
 block discarded – undo
920 920
     private function tokenizeStringContents($graphQLString)
921 921
     {
922 922
         $parser = new TokenizerTestingParser();
923
-        $parser->initTokenizerForTesting('"' . $graphQLString . '"');
923
+        $parser->initTokenizerForTesting('"'.$graphQLString.'"');
924 924
 
925 925
         return $parser->getTokenForTesting();
926 926
     }
Please login to merge, or discard this patch.
Tests/Parser/VariableTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
  * http://opensource.org/licenses/MIT
10 10
  */
11 11
 
12
-declare(strict_types=1);
12
+declare(strict_types = 1);
13 13
 
14 14
 namespace Youshido\Tests\Parser;
15 15
 
Please login to merge, or discard this patch.