Completed
Pull Request — master (#133)
by Adrien
04:00
created
Tests/Schema/FragmentsTest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -103,7 +103,7 @@  discard block
 block discarded – undo
103 103
                 'fields' => [
104 104
                     'user' => [
105 105
                         'type'    => new UserType(),
106
-                        'resolve' => function ($args) {
106
+                        'resolve' => function($args) {
107 107
                             return [
108 108
                                 'id'           => 'user-id-1',
109 109
                                 'fullName'     => 'Alex',
@@ -217,7 +217,7 @@  discard block
 block discarded – undo
217 217
                 'fields' => [
218 218
                     'user' => [
219 219
                         'type'    => new UserType(),
220
-                        'resolve' => function ($args) {
220
+                        'resolve' => function($args) {
221 221
                             return [
222 222
                                 'id'       => 'user-id-1',
223 223
                                 'fullName' => 'Alex',
Please login to merge, or discard this patch.
Tests/Schema/NonNullableTest.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -48,13 +48,13 @@  discard block
 block discarded – undo
48 48
                 'fields' => [
49 49
                     'nonNullScalar'        => [
50 50
                         'type'    => new NonNullType(new IntType()),
51
-                        'resolve' => function () {
51
+                        'resolve' => function() {
52 52
                             return null;
53 53
                         },
54 54
                     ],
55 55
                     'nonNullList'          => [
56 56
                         'type'    => new NonNullType(new ListType(new IntType())),
57
-                        'resolve' => function () {
57
+                        'resolve' => function() {
58 58
                             return null;
59 59
                         }
60 60
                     ],
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
                                 'name' => new StringType(),
67 67
                             ]
68 68
                         ])),
69
-                        'resolve' => function () {
69
+                        'resolve' => function() {
70 70
                             return [
71 71
                                 'id'   => new uid('6cfb044c-9c0a-4ddd-9ef8-a0b940818db3'),
72 72
                                 'name' => 'Alex'
@@ -75,7 +75,7 @@  discard block
 block discarded – undo
75 75
                     ],
76 76
                     'nonNullListOfNpnNull' => [
77 77
                         'type'    => new NonNullType(new ListType(new NonNullType(new IntType()))),
78
-                        'resolve' => function () {
78
+                        'resolve' => function() {
79 79
                             return [1, null];
80 80
                         }
81 81
                     ],
@@ -84,7 +84,7 @@  discard block
 block discarded – undo
84 84
                             'ids' => new NonNullType(new ListType(new IntType()))
85 85
                         ],
86 86
                         'type'    => new IntType(),
87
-                        'resolve' => function () {
87
+                        'resolve' => function() {
88 88
                             return 1;
89 89
                         }
90 90
                     ],
@@ -93,7 +93,7 @@  discard block
 block discarded – undo
93 93
                             'ids' => new NonNullType(new ListType(new NonNullType(new IntType())))
94 94
                         ],
95 95
                         'type'    => new IntType(),
96
-                        'resolve' => function () {
96
+                        'resolve' => function() {
97 97
                             return 1;
98 98
                         }
99 99
                     ],
Please login to merge, or discard this patch.
src/Field/AbstractField.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
     }
27 27
     protected $isFinal = false;
28 28
 
29
-    private $nameCache            = null;
29
+    private $nameCache = null;
30 30
 
31 31
     public function __construct(array $config = [])
32 32
     {
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
             $config['type'] = $this->getType();
35 35
             $config['name'] = $this->getName();
36 36
             if (empty($config['name'])) {
37
-                $config['name'] =$this->getAutoName();
37
+                $config['name'] = $this->getAutoName();
38 38
             }
39 39
         }
40 40
 
Please login to merge, or discard this patch.
Tests/Library/Type/ScalarTypeTest.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@  discard block
 block discarded – undo
23 23
     {
24 24
         foreach (TypeFactory::getScalarTypesNames() as $typeName) {
25 25
             $scalarType     = TypeFactory::getScalarType($typeName);
26
-            $testDataMethod = 'get' . $typeName . 'TestData';
26
+            $testDataMethod = 'get'.$typeName.'TestData';
27 27
 
28 28
             $this->assertNotEmpty($scalarType->getDescription());
29 29
             $this->assertEquals($scalarType->getKind(), TypeMap::KIND_SCALAR);
@@ -39,9 +39,9 @@  discard block
 block discarded – undo
39 39
                 $this->assertParse($scalarType, $data, $serialized, $typeName);
40 40
 
41 41
                 if ($isValid) {
42
-                    $this->assertTrue($scalarType->isValidValue($data), $typeName . ' validation for :' . serialize($data));
42
+                    $this->assertTrue($scalarType->isValidValue($data), $typeName.' validation for :'.serialize($data));
43 43
                 } else {
44
-                    $this->assertFalse($scalarType->isValidValue($data), $typeName . ' validation for :' . serialize($data));
44
+                    $this->assertFalse($scalarType->isValidValue($data), $typeName.' validation for :'.serialize($data));
45 45
                 }
46 46
             }
47 47
         }
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
 
63 63
     private function assertSerialization(AbstractScalarType $object, $input, $expected)
64 64
     {
65
-        $this->assertEquals($expected, $object->serialize($input), $object->getName() . ' serialize for: ' . serialize($input));
65
+        $this->assertEquals($expected, $object->serialize($input), $object->getName().' serialize for: '.serialize($input));
66 66
     }
67 67
 
68 68
     private function assertParse(AbstractScalarType $object, $input, $expected, $typeName)
@@ -71,7 +71,7 @@  discard block
 block discarded – undo
71 71
         if ($parsed instanceof \DateTime) {
72 72
             $expected = \DateTime::createFromFormat($typeName == 'datetime' ? 'Y-m-d H:i:s' : 'D, d M Y H:i:s O', $expected);
73 73
         }
74
-        $this->assertEquals($expected, $parsed, $object->getName() . ' parse for: ' . serialize($input));
74
+        $this->assertEquals($expected, $parsed, $object->getName().' parse for: '.serialize($input));
75 75
     }
76 76
 
77 77
 }
Please login to merge, or discard this patch.
Tests/Schema/InputObjectDefaultValuesTest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@  discard block
 block discarded – undo
31 31
                 ],
32 32
             ]
33 33
         ]);
34
-        $schema   = new Schema([
34
+        $schema = new Schema([
35 35
             'query' => new ObjectType([
36 36
                 'name'   => 'RootQuery',
37 37
                 'fields' => [
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
                                 ]
50 50
                             ])
51 51
                         ],
52
-                        'resolve'    => function ($source, $args) {
52
+                        'resolve'    => function($source, $args) {
53 53
                             return sprintf('Result with level %s and status %s',
54 54
                                 $args['statObject']['level'], $args['statObject']['status']
55 55
                             );
Please login to merge, or discard this patch.
Tests/Issues/Issue90/Issue90Schema.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@  discard block
 block discarded – undo
20 20
                         'args'    => [
21 21
                             'date' => new DateTimeType('Y-m-d H:ia')
22 22
                         ],
23
-                        'resolve' => function ($value, $args, $info) {
23
+                        'resolve' => function($value, $args, $info) {
24 24
 
25 25
                             if (isset($args['date'])) {
26 26
                                 return $args['date'];
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
                         'args'    => [
43 43
                             'date' => new DateTimeType('Y-m-d H:ia')
44 44
                         ],
45
-                        'resolve' => function ($value, $args, $info) {
45
+                        'resolve' => function($value, $args, $info) {
46 46
 
47 47
                             if (isset($args['date'])) {
48 48
                                 return $args['date'];
Please login to merge, or discard this patch.
Tests/Schema/VariablesTest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@  discard block
 block discarded – undo
24 24
                         'args'    => [
25 25
                             'ids' => new ListType(new NonNullType(new IdType()))
26 26
                         ],
27
-                        'resolve' => function () {
27
+                        'resolve' => function() {
28 28
                             return 'item';
29 29
                         }
30 30
                     ],
@@ -85,7 +85,7 @@  discard block
 block discarded – undo
85 85
                         'args'    => [
86 86
                             'sortOrder' => new StringType(),
87 87
                         ],
88
-                        'resolve' => function ($args) {
88
+                        'resolve' => function($args) {
89 89
                             return sprintf('Result with %s order', empty($args['sortOrder']) ? 'default' : $args['sortOrder']);
90 90
                         },
91 91
                     ],
Please login to merge, or discard this patch.
examples/03_relay_star_wars/index.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -5,7 +5,7 @@  discard block
 block discarded – undo
5 5
 use Youshido\GraphQL\Execution\Processor;
6 6
 use Youshido\GraphQL\Schema;
7 7
 
8
-require_once __DIR__ . '/schema-bootstrap.php';
8
+require_once __DIR__.'/schema-bootstrap.php';
9 9
 /** @var Schema\AbstractSchema $schema */
10 10
 $schema = new StarWarsRelaySchema();
11 11
 
@@ -48,4 +48,4 @@  discard block
 block discarded – undo
48 48
         ';
49 49
 
50 50
 $processor->processPayload($payload, ['names_0' => ['rebels']]);
51
-echo json_encode($processor->getResponseData()) . "\n";
51
+echo json_encode($processor->getResponseData())."\n";
Please login to merge, or discard this patch.
examples/03_relay_star_wars/router.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
11 11
 use Youshido\GraphQL\Execution\Processor;
12 12
 use Youshido\GraphQL\Schema\Schema;
13 13
 
14
-require_once __DIR__ . '/schema-bootstrap.php';
14
+require_once __DIR__.'/schema-bootstrap.php';
15 15
 /** @var Schema $schema */
16 16
 $schema = new StarWarsRelaySchema();
17 17
 
Please login to merge, or discard this patch.