Completed
Push — master ( 8484c4...f979a7 )
by Portey
03:07
created
src/Processor.php 2 patches
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -189,7 +189,7 @@  discard block
 block discarded – undo
189 189
     /**
190 190
      * @param $objectType InputObjectType|ObjectType
191 191
      * @param $query      Mutation|Query
192
-     * @return null
192
+     * @return boolean
193 193
      */
194 194
     private function checkFieldExist($objectType, $query)
195 195
     {
@@ -226,7 +226,7 @@  discard block
 block discarded – undo
226 226
     }
227 227
 
228 228
     /**
229
-     * @param $field        Field
229
+     * @param Field $field        Field
230 230
      * @param $contextValue mixed
231 231
      * @param $query        Query
232 232
      *
Please login to merge, or discard this patch.
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -127,7 +127,7 @@  discard block
 block discarded – undo
127 127
                     $value[] = [];
128 128
                     $index   = count($value) - 1;
129 129
 
130
-                    if(in_array($outputType->getConfig()->getItem()->getKind(), [TypeMap::KIND_UNION, TypeMap::KIND_INTERFACE]) ) {
130
+                    if (in_array($outputType->getConfig()->getItem()->getKind(), [TypeMap::KIND_UNION, TypeMap::KIND_INTERFACE])) {
131 131
                         $type = $outputType->getConfig()->getItemConfig()->resolveType($resolvedValueItem);
132 132
                     } else {
133 133
                         $type = $outputType;
@@ -173,7 +173,7 @@  discard block
 block discarded – undo
173 173
             $preResolvedValue = $this->getPreResolvedValue($contextValue, $query);
174 174
 
175 175
             if ($field->getConfig()->getType()->getKind() == TypeMap::KIND_LIST) {
176
-                if(!is_array($preResolvedValue)){
176
+                if (!is_array($preResolvedValue)) {
177 177
                     $value = null;
178 178
                     $this->resolveValidator->addError(new ResolveException('Not valid resolve value for list type'));
179 179
                 }
@@ -186,7 +186,7 @@  discard block
 block discarded – undo
186 186
 
187 187
                     if ($type->getKind() == TypeMap::KIND_ENUM) {
188 188
                         /** @var $type AbstractEnumType */
189
-                        if(!$type->isValidValue($resolvedValueItem)) {
189
+                        if (!$type->isValidValue($resolvedValueItem)) {
190 190
                             $this->resolveValidator->addError(new ResolveException('Not valid value for enum type'));
191 191
 
192 192
                             $listValue = null;
@@ -203,7 +203,7 @@  discard block
 block discarded – undo
203 203
                 $value = $listValue;
204 204
             } else {
205 205
                 if ($field->getType()->getKind() == TypeMap::KIND_ENUM) {
206
-                    if(!$field->getType()->isValidValue($preResolvedValue)) {
206
+                    if (!$field->getType()->isValidValue($preResolvedValue)) {
207 207
                         $this->resolveValidator->addError(new ResolveException('Not valid value for enum type'));
208 208
                         $value = null;
209 209
                     } else {
@@ -234,7 +234,7 @@  discard block
 block discarded – undo
234 234
                         $value[] = [];
235 235
                         $index   = count($value) - 1;
236 236
 
237
-                        if(in_array($field->getConfig()->getType()->getConfig()->getItem()->getKind(), [TypeMap::KIND_UNION, TypeMap::KIND_INTERFACE]) ) {
237
+                        if (in_array($field->getConfig()->getType()->getConfig()->getItem()->getKind(), [TypeMap::KIND_UNION, TypeMap::KIND_INTERFACE])) {
238 238
                             $type = $field->getConfig()->getType()->getConfig()->getItemConfig()->resolveType($resolvedValueItem);
239 239
                         } else {
240 240
                             $type = $field->getType();
@@ -309,7 +309,7 @@  discard block
 block discarded – undo
309 309
     {
310 310
         $resolvedValue = $field->getConfig()->resolve($contextValue, $this->parseArgumentsValues($field, $query));
311 311
 
312
-        if(in_array($field->getType()->getKind(), [TypeMap::KIND_UNION, TypeMap::KIND_INTERFACE])){
312
+        if (in_array($field->getType()->getKind(), [TypeMap::KIND_UNION, TypeMap::KIND_INTERFACE])) {
313 313
             $resolvedType = $field->getType()->resolveType($resolvedValue);
314 314
             $field->setType($resolvedType);
315 315
         }
@@ -329,7 +329,7 @@  discard block
 block discarded – undo
329 329
             return [];
330 330
         }
331 331
 
332
-        $args      = [];
332
+        $args = [];
333 333
         foreach ($query->getArguments() as $argument) {
334 334
             $args[$argument->getName()] = $field->getConfig()->getArgument($argument->getName())->getType()->parseValue($argument->getValue()->getValue());
335 335
         }
Please login to merge, or discard this patch.
src/Type/Config/Traits/FieldsAwareTrait.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@
 block discarded – undo
40 40
      */
41 41
     public function addFields($fieldsArray)
42 42
     {
43
-        foreach($fieldsArray as $fieldName => $fieldConfig) {
43
+        foreach ($fieldsArray as $fieldName => $fieldConfig) {
44 44
             if (is_object($fieldConfig)) {
45 45
                 $this->addField($fieldName, $fieldConfig);
46 46
             } else {
Please login to merge, or discard this patch.
Tests/Type/Config/EnumTypeConfigTest.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.
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.
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.
src/Type/Object/AbstractEnumType.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   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@
 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();
Please login to merge, or discard this patch.
Tests/StarWars/Schema/DroidType.php 2 patches
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -9,8 +9,6 @@
 block discarded – undo
9 9
 
10 10
 
11 11
 use Youshido\GraphQL\Type\Config\TypeConfigInterface;
12
-use Youshido\GraphQL\Type\ListType\ListType;
13
-use Youshido\GraphQL\Type\Object\AbstractObjectType;
14 12
 use Youshido\GraphQL\Type\TypeMap;
15 13
 
16 14
 class DroidType extends HumanType
Please login to merge, or discard this 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/Type/Union/Schema/QueryType.php 2 patches
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.
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: 16.12.15
4
- *
5
- * @author Portey Vasil <[email protected]>
6
- */
3
+     * Date: 16.12.15
4
+     *
5
+     * @author Portey Vasil <[email protected]>
6
+     */
7 7
 
8 8
 namespace Youshido\Tests\Type\Union\Schema;
9 9
 
Please login to merge, or discard this patch.
Tests/Type/Union/Schema/UnionTestData.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: 16.12.15
4
- *
5
- * @author Portey Vasil <[email protected]>
6
- */
3
+     * Date: 16.12.15
4
+     *
5
+     * @author Portey Vasil <[email protected]>
6
+     */
7 7
 
8 8
 namespace Youshido\Tests\Type\Union\Schema;
9 9
 
Please login to merge, or discard this patch.