Completed
Push — master ( b8b70e...552805 )
by Portey
03:44
created
Tests/ProcessorTest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@  discard block
 block discarded – undo
39 39
                         'id'   => ['type' => 'int'],
40 40
                         'name' => ['type' => 'string']
41 41
                     ],
42
-                    'resolve' => function () {
42
+                    'resolve' => function() {
43 43
                         return [
44 44
                             'id'   => 1,
45 45
                             'name' => 'Alex'
@@ -115,7 +115,7 @@  discard block
 block discarded – undo
115 115
                         'id'   => ['type' => 'int'],
116 116
                         'name' => ['type' => 'string']
117 117
                     ],
118
-                    'resolve' => function () {
118
+                    'resolve' => function() {
119 119
                         return [
120 120
                             'id'   => 1,
121 121
                             'name' => 'Alex'
Please login to merge, or discard this patch.
src/Definition/QueryType.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
21 21
             ->addField('kind', 'string')
22 22
             ->addField('description', 'string')
23 23
             ->addField('ofType', new QueryListType(), [
24
-                'resolve' => function () {
24
+                'resolve' => function() {
25 25
                     return [];
26 26
                 }
27 27
             ])
Please login to merge, or discard this patch.
src/Parser/Tokenizer.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -226,10 +226,10 @@
 block discarded – undo
226 226
 
227 227
         $value = substr($this->source, $start, $this->pos - $start);
228 228
 
229
-        if(strpos($value, '.') === false){
230
-            $value = (int) $value;
229
+        if (strpos($value, '.') === false) {
230
+            $value = (int)$value;
231 231
         } else {
232
-            $value = (float) $value;
232
+            $value = (float)$value;
233 233
         }
234 234
 
235 235
         return new Token(Token::TYPE_NUMBER, $value);
Please login to merge, or discard this patch.
src/Processor.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -166,7 +166,7 @@
 block discarded – undo
166 166
             }
167 167
 
168 168
             $value = [];
169
-            if($resolvedValue){
169
+            if ($resolvedValue) {
170 170
                 if ($field->getType()->getKind() == TypeMap::KIND_LIST) {
171 171
                     foreach ($resolvedValue as $resolvedValueItem) {
172 172
                         $value[] = [];
Please login to merge, or discard this patch.
src/Type/Config/Field/FieldConfig.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
         $resolveFunction = $this->get('resolve', null);
35 35
 
36
-        if($resolveFunction && is_callable($resolveFunction)) {
36
+        if ($resolveFunction && is_callable($resolveFunction)) {
37 37
            return $resolveFunction($value, $args);
38 38
         }
39 39
 
Please login to merge, or discard this patch.