Completed
Push — master ( 75360a...120e4f )
by Portey
05:16
created
Tests/Schema/HumanType.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
             ->addField('friends', new ListType([
32 32
                 'item' => new CharacterInterface()
33 33
             ]), [
34
-                'resolve' => function ($droid) {
34
+                'resolve' => function($droid) {
35 35
                     return StarWarsData::getFriends($droid);
36 36
                 },
37 37
             ])
Please login to merge, or discard this patch.
Tests/Schema/QueryType.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
                 'args'    => [
34 34
                     'episode' => ['type' => new EpisodeEnum()]
35 35
                 ],
36
-                'resolve' => function ($root, $args) {
36
+                'resolve' => function($root, $args) {
37 37
                     return StarWarsData::getHero(isset($args['episode']) ? $args['episode'] : null);
38 38
                 },
39 39
             ])
Please login to merge, or discard this patch.
Tests/Schema/Schema.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,9 +1,9 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Date: 07.12.15
4
- *
5
- * @author Portey Vasil <[email protected]>
6
- */
3
+     * Date: 07.12.15
4
+     *
5
+     * @author Portey Vasil <[email protected]>
6
+     */
7 7
 
8 8
 namespace Youshido\Tests\Type\Config;
9 9
 
Please login to merge, or discard this patch.
Tests/StarWarsTest.php 2 patches
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,9 +1,9 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Date: 07.12.15
4
- *
5
- * @author Portey Vasil <[email protected]>
6
- */
3
+     * Date: 07.12.15
4
+     *
5
+     * @author Portey Vasil <[email protected]>
6
+     */
7 7
 
8 8
 namespace Youshido\Tests\Type\Config;
9 9
 
Please login to merge, or discard this 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/Config/Object/InterfaceTypeConfig.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@
 block discarded – undo
38 38
     {
39 39
         $callable = $this->get('resolveType');
40 40
 
41
-        if($callable && is_callable($callable)) {
41
+        if ($callable && is_callable($callable)) {
42 42
             return call_user_func_array($callable, [$object]);
43 43
         }
44 44
 
Please login to merge, or discard this patch.
src/Type/Object/AbstractEnumType.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
      */
45 45
     public function isValidValue($value)
46 46
     {
47
-        return in_array($value, array_map(function ($item) { return $item['value']; }, $this->getConfig()->get('values')));
47
+        return in_array($value, array_map(function($item) { return $item['value']; }, $this->getConfig()->get('values')));
48 48
     }
49 49
 
50 50
     abstract public function getValues();
@@ -55,8 +55,8 @@  discard block
 block discarded – undo
55 55
 
56 56
     public function resolve($value)
57 57
     {
58
-        foreach($this->getConfig()->get('values') as $enumValue => $valueItem) {
59
-            if($value == $valueItem['value']){
58
+        foreach ($this->getConfig()->get('values') as $enumValue => $valueItem) {
59
+            if ($value == $valueItem['value']) {
60 60
                 return $enumValue;
61 61
             }
62 62
         }
Please login to merge, or discard this patch.
Tests/ProcessorTest.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@  discard block
 block discarded – undo
43 43
                         'id'   => ['type' => TypeMap::TYPE_INT],
44 44
                         'name' => ['type' => TypeMap::TYPE_STRING]
45 45
                     ],
46
-                    'resolve' => function () {
46
+                    'resolve' => function() {
47 47
                         return [
48 48
                             'id'   => 1,
49 49
                             'name' => 'Alex'
@@ -109,8 +109,8 @@  discard block
 block discarded – undo
109 109
                                 ['name' => 'String', 'fields' => []],
110 110
                                 ['name' => '__Schema', 'fields' => [['name' => 'queryType'], ['name' => 'mutationType'], ['name' => 'types']]],
111 111
                                 ['name' => '__Type', 'fields' => [['name' => 'name'], ['name' => 'kind'], ['name' => 'description'], ['name' => 'ofType'], ['name' => 'inputFields'], ['name' => 'enumValues'], ['name' => 'fields'], ['name' => 'interfaces'], ['name' => 'possibleTypes']]],
112
-                                ['name' => '__InputValue', 'fields' => [['name' => 'name'],['name' => 'description'],['name' => 'type'],['name' => 'defaultValue'],]],
113
-                                ['name' => '__EnumValue', 'fields' => [['name' => 'name'],['name' => 'description'],['name' => 'deprecationReason'],['name' => 'isDeprecated'],]],
112
+                                ['name' => '__InputValue', 'fields' => [['name' => 'name'], ['name' => 'description'], ['name' => 'type'], ['name' => 'defaultValue'], ]],
113
+                                ['name' => '__EnumValue', 'fields' => [['name' => 'name'], ['name' => 'description'], ['name' => 'deprecationReason'], ['name' => 'isDeprecated'], ]],
114 114
                                 ['name' => 'Boolean', 'fields' => []],
115 115
                                 ['name' => '__Field', 'fields' => [['name' => 'name'], ['name' => 'description'], ['name' => 'isDeprecated'], ['name' => 'deprecationReason'], ['name' => 'type'], ['name' => 'args']]],
116 116
                                 ['name' => '__Argument', 'fields' => [['name' => 'name'], ['name' => 'description']]],
@@ -207,7 +207,7 @@  discard block
 block discarded – undo
207 207
                         'id'   => ['type' => TypeMap::TYPE_INT],
208 208
                         'name' => ['type' => TypeMap::TYPE_STRING]
209 209
                     ],
210
-                    'resolve' => function () {
210
+                    'resolve' => function() {
211 211
                         return [
212 212
                             'id'   => 1,
213 213
                             'name' => 'Alex'
Please login to merge, or discard this patch.
Tests/Schema/EpisodeEnum.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,9 +1,9 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Date: 07.12.15
4
- *
5
- * @author Portey Vasil <[email protected]>
6
- */
3
+     * Date: 07.12.15
4
+     *
5
+     * @author Portey Vasil <[email protected]>
6
+     */
7 7
 
8 8
 namespace Youshido\Tests\Type\Config;
9 9
 
Please login to merge, or discard this patch.