Completed
Push — master ( 7a0180...875ce0 )
by Alexandr
02:39
created
Tests/StarWars/StarWarsTest.php 1 patch
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -98,21 +98,21 @@  discard block
 block discarded – undo
98 98
                             'friends' => [
99 99
                                 [
100 100
                                     'name'      => 'Luke Skywalker',
101
-                                    'appearsIn' => ['NEWHOPE', 'EMPIRE', 'JEDI',],
101
+                                    'appearsIn' => ['NEWHOPE', 'EMPIRE', 'JEDI', ],
102 102
                                     'friends'   => [
103
-                                        ['name' => 'Han Solo',],
104
-                                        ['name' => 'Leia Organa',],
105
-                                        ['name' => 'C-3PO',],
106
-                                        ['name' => 'R2-D2',],
103
+                                        ['name' => 'Han Solo', ],
104
+                                        ['name' => 'Leia Organa', ],
105
+                                        ['name' => 'C-3PO', ],
106
+                                        ['name' => 'R2-D2', ],
107 107
                                     ],
108 108
                                 ],
109 109
                                 [
110 110
                                     'name'      => 'Han Solo',
111 111
                                     'appearsIn' => ['NEWHOPE', 'EMPIRE', 'JEDI'],
112 112
                                     'friends'   => [
113
-                                        ['name' => 'Luke Skywalker',],
113
+                                        ['name' => 'Luke Skywalker', ],
114 114
                                         ['name' => 'Leia Organa'],
115
-                                        ['name' => 'R2-D2',],
115
+                                        ['name' => 'R2-D2', ],
116 116
                                     ]
117 117
                                 ],
118 118
                                 [
@@ -120,10 +120,10 @@  discard block
 block discarded – undo
120 120
                                     'appearsIn' => ['NEWHOPE', 'EMPIRE', 'JEDI'],
121 121
                                     'friends'   =>
122 122
                                         [
123
-                                            ['name' => 'Luke Skywalker',],
124
-                                            ['name' => 'Han Solo',],
125
-                                            ['name' => 'C-3PO',],
126
-                                            ['name' => 'R2-D2',],
123
+                                            ['name' => 'Luke Skywalker', ],
124
+                                            ['name' => 'Han Solo', ],
125
+                                            ['name' => 'C-3PO', ],
126
+                                            ['name' => 'R2-D2', ],
127 127
                                         ],
128 128
                                 ],
129 129
                             ],
Please login to merge, or discard this patch.
src/Type/Scalar/IntType.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -29,9 +29,9 @@
 block discarded – undo
29 29
 
30 30
     public function getDescription()
31 31
     {
32
-        return 'The `Int` scalar type represents non-fractional signed whole numeric ' .
33
-               'values. Int can represent values between -(2^53 - 1) and 2^53 - 1 since ' .
34
-               'represented in JSON as double-precision floating point numbers specified' .
32
+        return 'The `Int` scalar type represents non-fractional signed whole numeric '.
33
+               'values. Int can represent values between -(2^53 - 1) and 2^53 - 1 since '.
34
+               'represented in JSON as double-precision floating point numbers specified'.
35 35
                'by [IEEE 754](http://en.wikipedia.org/wiki/IEEE_floating_point).';
36 36
     }
37 37
 
Please login to merge, or discard this patch.
src/Type/Scalar/FloatType.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -23,8 +23,8 @@
 block discarded – undo
23 23
 
24 24
     public function getDescription()
25 25
     {
26
-        return 'The `Float` scalar type represents signed double-precision fractional ' .
27
-               'values as specified by ' .
26
+        return 'The `Float` scalar type represents signed double-precision fractional '.
27
+               'values as specified by '.
28 28
                '[IEEE 754](http://en.wikipedia.org/wiki/IEEE_floating_point).';
29 29
     }
30 30
 
Please login to merge, or discard this patch.
examples/02_blog/Schema/PostType.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -25,8 +25,8 @@
 block discarded – undo
25 25
                 'args'              => [
26 26
                     'truncated' => new BooleanType()
27 27
                 ],
28
-                'resolve'           => function ($value, $args) {
29
-                    return (!empty($args['truncated'])) ? explode(' ', $value)[0] . '...' : $value;
28
+                'resolve'           => function($value, $args) {
29
+                    return (!empty($args['truncated'])) ? explode(' ', $value)[0].'...' : $value;
30 30
                 }
31 31
             ])
32 32
             ->addField('title', new NonNullType(new StringType()))
Please login to merge, or discard this patch.
examples/02_blog/Schema/DataProvider.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -10,8 +10,8 @@  discard block
 block discarded – undo
10 10
     public static function getPost($id)
11 11
     {
12 12
         return [
13
-            "id"        => "post-" . $id,
14
-            "title"     => "Post " . $id . " title",
13
+            "id"        => "post-".$id,
14
+            "title"     => "Post ".$id." title",
15 15
             "summary"   => "This new GraphQL library for PHP works really well",
16 16
             "status"    => 1,
17 17
             "likeCount" => 2
@@ -21,9 +21,9 @@  discard block
 block discarded – undo
21 21
     public static function getBanner($id)
22 22
     {
23 23
         return [
24
-            'id'        => "banner-" . $id,
25
-            'title'     => "Banner " . $id,
26
-            'imageLink' => "banner" . $id . ".jpg"
24
+            'id'        => "banner-".$id,
25
+            'title'     => "Banner ".$id,
26
+            'imageLink' => "banner".$id.".jpg"
27 27
         ];
28 28
     }
29 29
 }
Please login to merge, or discard this patch.
Tests/StarWars/Schema/DroidType.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
     {
29 29
         parent::build($config);
30 30
 
31
-        $config->getField('friends')->getConfig()->set('resolve', function ($droid) {
31
+        $config->getField('friends')->getConfig()->set('resolve', function($droid) {
32 32
             return StarWarsData::getFriends($droid);
33 33
         });
34 34
 
Please login to merge, or discard this patch.
Tests/Library/Type/InterfaceTypeTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@
 block discarded – undo
43 43
             'fields'      => [
44 44
                 'name' => new StringType()
45 45
             ],
46
-            'resolveType' => function ($object) {
46
+            'resolveType' => function($object) {
47 47
                 return $object;
48 48
             }
49 49
         ]);
Please login to merge, or discard this patch.
Tests/Library/Type/UnionTypeTest.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
                 new TestObjectType(),
33 33
                 $object
34 34
             ],
35
-            'resolveType' => function ($type) {
35
+            'resolveType' => function($type) {
36 36
                 return $type;
37 37
             }
38 38
         ]);
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
67 67
             'types'       => [
68 68
                 'test', new IntType()
69 69
             ],
70
-            'resolveType' => function ($type) {
70
+            'resolveType' => function($type) {
71 71
                 return $type;
72 72
             }
73 73
         ]);
@@ -84,7 +84,7 @@  discard block
 block discarded – undo
84 84
             'types'       => [
85 85
                 new IntType()
86 86
             ],
87
-            'resolveType' => function ($type) {
87
+            'resolveType' => function($type) {
88 88
                 return $type;
89 89
             }
90 90
         ]);
Please login to merge, or discard this patch.
Tests/Library/Type/EnumTypeTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -102,7 +102,7 @@
 block discarded – undo
102 102
                 'value' => 'disable'
103 103
             ]
104 104
         ];
105
-        $enumType   = new EnumType([
105
+        $enumType = new EnumType([
106 106
             'name'   => 'BoolEnum',
107 107
             'values' => $valuesData
108 108
         ]);
Please login to merge, or discard this patch.