Completed
Push — master ( e40fed...ed70fa )
by Portey
02:55
created
src/Type/Object/AbstractInputObjectType.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@
 block discarded – undo
37 37
             return false;
38 38
         }
39 39
 
40
-        $requiredFields = array_filter($this->getConfig()->getFields(), function (Field $field) {
40
+        $requiredFields = array_filter($this->getConfig()->getFields(), function(Field $field) {
41 41
             return $field->getConfig()->isRequired();
42 42
         });
43 43
 
Please login to merge, or discard this patch.
src/Processor.php 2 patches
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -188,7 +188,7 @@  discard block
 block discarded – undo
188 188
     /**
189 189
      * @param $objectType InputObjectType|ObjectType
190 190
      * @param $query Mutation|Query
191
-     * @return null
191
+     * @return boolean
192 192
      */
193 193
     private function checkFieldExist($objectType, $query)
194 194
     {
@@ -225,7 +225,7 @@  discard block
 block discarded – undo
225 225
     }
226 226
 
227 227
     /**
228
-     * @param $field    Field
228
+     * @param Field $field    Field
229 229
      * @param $contextValue mixed
230 230
      * @param $query        Query
231 231
      *
Please login to merge, or discard this 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.
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/InterfaceListType.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: 03.12.15
4
- *
5
- * @author Portey Vasil <[email protected]>
6
- */
3
+     * Date: 03.12.15
4
+     *
5
+     * @author Portey Vasil <[email protected]>
6
+     */
7 7
 
8 8
 namespace Youshido\GraphQL\Definition;
9 9
 
Please login to merge, or discard this patch.
src/Definition/PossibleOfListType.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: 03.12.15
4
- *
5
- * @author Portey Vasil <[email protected]>
6
- */
3
+     * Date: 03.12.15
4
+     *
5
+     * @author Portey Vasil <[email protected]>
6
+     */
7 7
 
8 8
 namespace Youshido\GraphQL\Definition;
9 9
 
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/Type/Config/Field/FieldConfig.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 block discarded – undo
34 34
         $resolveFunction = $this->get('resolve', null);
35 35
 
36 36
         if($resolveFunction && is_callable($resolveFunction)) {
37
-           return $resolveFunction($value, $args);
37
+            return $resolveFunction($value, $args);
38 38
         }
39 39
 
40 40
         return $this->getType()->resolve($value, $args);
Please login to merge, or discard this 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.
src/Definition/InterfaceType.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: 03.12.15
4
- *
5
- * @author Portey Vasil <[email protected]>
6
- */
3
+     * Date: 03.12.15
4
+     *
5
+     * @author Portey Vasil <[email protected]>
6
+     */
7 7
 
8 8
 namespace Youshido\GraphQL\Definition;
9 9
 
Please login to merge, or discard this patch.
src/Definition/Traits/TypeCollectorTrait.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: 04.12.15
4
- *
5
- * @author Portey Vasil <[email protected]>
6
- */
3
+     * Date: 04.12.15
4
+     *
5
+     * @author Portey Vasil <[email protected]>
6
+     */
7 7
 
8 8
 namespace Youshido\GraphQL\Definition\Traits;
9 9
 
Please login to merge, or discard this patch.