Completed
Push — master ( 4406e7...95db8c )
by Alexandr
02:55
created
src/Config/Traits/ResolvableObjectTrait.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -14,6 +14,9 @@
 block discarded – undo
14 14
 trait ResolvableObjectTrait
15 15
 {
16 16
 
17
+    /**
18
+     * @param string|boolean $value
19
+     */
17 20
     public function resolve($value, array $args, ResolveInfo $info)
18 21
     {
19 22
         if ($resolveFunction = $this->getConfig()->getResolveFunction()) {
Please login to merge, or discard this patch.
Tests/Library/Type/InputObjectTypeTest.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
                 'fields' => [
54 54
                     'empty' => [
55 55
                         'type'    => new StringType(),
56
-                        'resolve' => function () {
56
+                        'resolve' => function() {
57 57
                             return null;
58 58
                         }
59 59
                     ]
@@ -72,7 +72,7 @@  discard block
 block discarded – undo
72 72
                             ]))
73 73
                         ],
74 74
                         'type'    => new BooleanType(),
75
-                        'resolve' => function ($object, $args) {
75
+                        'resolve' => function($object, $args) {
76 76
                             return true;
77 77
                         }
78 78
                     ]
@@ -99,7 +99,7 @@  discard block
 block discarded – undo
99 99
                 'fields' => [
100 100
                     'empty' => [
101 101
                         'type'    => new StringType(),
102
-                        'resolve' => function () {
102
+                        'resolve' => function() {
103 103
                         }
104 104
                     ],
105 105
                 ]
@@ -122,7 +122,7 @@  discard block
 block discarded – undo
122 122
                                 ]
123 123
                             ])
124 124
                         ],
125
-                        'resolve' => function () {
125
+                        'resolve' => function() {
126 126
                             return 'success message';
127 127
                         }
128 128
                     ]
Please login to merge, or discard this patch.
Tests/Schema/ProcessorTest.php 1 patch
Spacing   +35 added lines, -35 removed lines patch added patch discarded remove patch
@@ -96,14 +96,14 @@  discard block
 block discarded – undo
96 96
                 'fields' => [
97 97
                     'list' => [
98 98
                         'type'    => new ListType(new StringType()),
99
-                        'resolve' => function () {
99
+                        'resolve' => function() {
100 100
                             return null;
101 101
                         }
102 102
                     ]
103 103
                 ]
104 104
             ])
105 105
         ]));
106
-        $data      = $processor->processPayload(' { list }')->getResponseData();
106
+        $data = $processor->processPayload(' { list }')->getResponseData();
107 107
         $this->assertEquals(['data' => ['list' => null]], $data);
108 108
     }
109 109
 
@@ -116,20 +116,20 @@  discard block
 block discarded – undo
116 116
                 'fields' => [
117 117
                     'list' => [
118 118
                         'type'    => new ListType(new StringType()),
119
-                        'resolve' => function () {
119
+                        'resolve' => function() {
120 120
                             return null;
121 121
                         }
122 122
                     ]
123 123
                 ]
124 124
             ])
125 125
         ]));
126
-        $data      = $processor->processPayload(' { __schema { subscriptionType { name } } }')->getResponseData();
126
+        $data = $processor->processPayload(' { __schema { subscriptionType { name } } }')->getResponseData();
127 127
         $this->assertEquals(['data' => ['__schema' => ['subscriptionType' => null]]], $data);
128 128
     }
129 129
 
130 130
     public function testSchemaOperations()
131 131
     {
132
-        $schema    = new Schema([
132
+        $schema = new Schema([
133 133
             'query' => new ObjectType([
134 134
                 'name'   => 'RootQuery',
135 135
                 'fields' => [
@@ -142,13 +142,13 @@  discard block
 block discarded – undo
142 142
                                     'args'    => [
143 143
                                         'shorten' => new BooleanType()
144 144
                                     ],
145
-                                    'resolve' => function ($value, $args) {
145
+                                    'resolve' => function($value, $args) {
146 146
                                         return empty($args['shorten']) ? $value['firstName'] : $value['firstName'];
147 147
                                     }
148 148
                                 ],
149 149
                                 'id_alias'  => [
150 150
                                     'type'    => new IdType(),
151
-                                    'resolve' => function ($value) {
151
+                                    'resolve' => function($value) {
152 152
                                         return $value['id'];
153 153
                                     }
154 154
                                 ],
@@ -156,7 +156,7 @@  discard block
 block discarded – undo
156 156
                                 'code'      => new StringType(),
157 157
                             ]
158 158
                         ]),
159
-                        'resolve' => function ($value, $args) {
159
+                        'resolve' => function($value, $args) {
160 160
                             $data = ['id' => '123', 'firstName' => 'John', 'code' => '007'];
161 161
                             if (!empty($args['upper'])) {
162 162
                                 foreach ($data as $key => $value) {
@@ -175,19 +175,19 @@  discard block
 block discarded – undo
175 175
                     ],
176 176
                     'randomUser'        => [
177 177
                         'type'    => new TestObjectType(),
178
-                        'resolve' => function () {
178
+                        'resolve' => function() {
179 179
                             return ['invalidField' => 'John'];
180 180
                         }
181 181
                     ],
182 182
                     'invalidValueQuery' => [
183 183
                         'type'    => new TestObjectType(),
184
-                        'resolve' => function () {
184
+                        'resolve' => function() {
185 185
                             return 'stringValue';
186 186
                         }
187 187
                     ],
188 188
                     'labels'            => [
189 189
                         'type'    => new ListType(new StringType()),
190
-                        'resolve' => function () {
190
+                        'resolve' => function() {
191 191
                             return ['one', 'two'];
192 192
                         }
193 193
                     ]
@@ -218,7 +218,7 @@  discard block
 block discarded – undo
218 218
             ->addField(new Field([
219 219
                 'name'    => 'increaseCounter',
220 220
                 'type'    => new IntType(),
221
-                'resolve' => function ($value, $args, ResolveInfo $info) {
221
+                'resolve' => function($value, $args, ResolveInfo $info) {
222 222
                     return $this->_counter += $args['amount'];
223 223
                 },
224 224
                 'args'    => [
@@ -230,13 +230,13 @@  discard block
 block discarded – undo
230 230
             ]))->addField(new Field([
231 231
                 'name'    => 'invalidResolveTypeMutation',
232 232
                 'type'    => new NonNullType(new IntType()),
233
-                'resolve' => function () {
233
+                'resolve' => function() {
234 234
                     return null;
235 235
                 }
236 236
             ]))->addField(new Field([
237 237
                 'name'    => 'interfacedMutation',
238 238
                 'type'    => new TestInterfaceType(),
239
-                'resolve' => function () {
239
+                'resolve' => function() {
240 240
                     return ['name' => 'John'];
241 241
                 }
242 242
             ]));
@@ -317,7 +317,7 @@  discard block
 block discarded – undo
317 317
                             ]))
318 318
                         ],
319 319
                         'type'    => new StringType(),
320
-                        'resolve' => function ($value, $args) {
320
+                        'resolve' => function($value, $args) {
321 321
                             return $args['argument1'];
322 322
                         }
323 323
                     ]
@@ -362,43 +362,43 @@  discard block
 block discarded – undo
362 362
                 'fields' => [
363 363
                     'listQuery'                 => [
364 364
                         'type'    => new ListType(new TestEnumType()),
365
-                        'resolve' => function () {
365
+                        'resolve' => function() {
366 366
                             return 'invalid list';
367 367
                         }
368 368
                     ],
369 369
                     'listEnumQuery'             => [
370 370
                         'type'    => new ListType(new TestEnumType()),
371
-                        'resolve' => function () {
371
+                        'resolve' => function() {
372 372
                             return ['invalid enum'];
373 373
                         }
374 374
                     ],
375 375
                     'invalidEnumQuery'          => [
376 376
                         'type'    => new TestEnumType(),
377
-                        'resolve' => function () {
377
+                        'resolve' => function() {
378 378
                             return 'invalid enum';
379 379
                         }
380 380
                     ],
381 381
                     'enumQuery'                 => [
382 382
                         'type'    => new TestEnumType(),
383
-                        'resolve' => function () {
383
+                        'resolve' => function() {
384 384
                             return 1;
385 385
                         }
386 386
                     ],
387 387
                     'invalidNonNullQuery'       => [
388 388
                         'type'    => new NonNullType(new IntType()),
389
-                        'resolve' => function () {
389
+                        'resolve' => function() {
390 390
                             return null;
391 391
                         }
392 392
                     ],
393 393
                     'invalidNonNullInsideQuery' => [
394 394
                         'type'    => new NonNullType(new IntType()),
395
-                        'resolve' => function () {
395
+                        'resolve' => function() {
396 396
                             return 'hello';
397 397
                         }
398 398
                     ],
399 399
                     'objectQuery'               => [
400 400
                         'type'    => new TestObjectType(),
401
-                        'resolve' => function () {
401
+                        'resolve' => function() {
402 402
                             return ['name' => 'John'];
403 403
                         }
404 404
                     ],
@@ -410,7 +410,7 @@  discard block
 block discarded – undo
410 410
                                 'enum'   => new TestEnumType(),
411 411
                             ],
412 412
                         ]),
413
-                        'resolve' => function () {
413
+                        'resolve' => function() {
414 414
                             return [
415 415
                                 'object' => [
416 416
                                     'name' => 'John'
@@ -489,10 +489,10 @@  discard block
 block discarded – undo
489 489
             ]
490 490
         ]);
491 491
 
492
-        $union        = new UnionType([
492
+        $union = new UnionType([
493 493
             'name'        => 'TestUnion',
494 494
             'types'       => [$object1, $object2],
495
-            'resolveType' => function ($object) use ($object1, $object2) {
495
+            'resolveType' => function($object) use ($object1, $object2) {
496 496
                 if (isset($object['id'])) {
497 497
                     return $object1;
498 498
                 }
@@ -503,11 +503,11 @@  discard block
 block discarded – undo
503 503
         $invalidUnion = new UnionType([
504 504
             'name'        => 'TestUnion',
505 505
             'types'       => [$object1, $object2],
506
-            'resolveType' => function ($object) use ($object3) {
506
+            'resolveType' => function($object) use ($object3) {
507 507
                 return $object3;
508 508
             }
509 509
         ]);
510
-        $processor    = new Processor(new Schema([
510
+        $processor = new Processor(new Schema([
511 511
             'query' => new ObjectType([
512 512
                 'name'   => 'RootQuery',
513 513
                 'fields' => [
@@ -517,7 +517,7 @@  discard block
 block discarded – undo
517 517
                             'type' => ['type' => 'string']
518 518
                         ],
519 519
                         'cost'    => 10,
520
-                        'resolve' => function ($value, $args) {
520
+                        'resolve' => function($value, $args) {
521 521
                             if ($args['type'] == 'object1') {
522 522
                                 return [
523 523
                                     'id' => 43
@@ -531,7 +531,7 @@  discard block
 block discarded – undo
531 531
                     ],
532 532
                     'invalidUnion' => [
533 533
                         'type'    => $invalidUnion,
534
-                        'resolve' => function () {
534
+                        'resolve' => function() {
535 535
                             return ['name' => 'name resolved'];
536 536
                         }
537 537
                     ],
@@ -593,7 +593,7 @@  discard block
 block discarded – undo
593 593
                 'fields' => [
594 594
                     'currentUser' => [
595 595
                         'type'    => new StringType(),
596
-                        'resolve' => function ($source, $args, ResolveInfo $info) {
596
+                        'resolve' => function($source, $args, ResolveInfo $info) {
597 597
                             return $info->getContainer()->get('user')['name'];
598 598
                         }
599 599
                     ]
@@ -611,7 +611,7 @@  discard block
 block discarded – undo
611 611
 
612 612
     public function testComplexityReducer()
613 613
     {
614
-        $schema    = new Schema(
614
+        $schema = new Schema(
615 615
             [
616 616
                 'query' => new ObjectType(
617 617
                     [
@@ -627,7 +627,7 @@  discard block
 block discarded – undo
627 627
                                                 'args'    => [
628 628
                                                     'shorten' => new BooleanType()
629 629
                                                 ],
630
-                                                'resolve' => function ($value, $args) {
630
+                                                'resolve' => function($value, $args) {
631 631
                                                     return empty($args['shorten']) ? $value['firstName'] : $value['firstName'];
632 632
                                                 }
633 633
                                             ],
@@ -636,19 +636,19 @@  discard block
 block discarded – undo
636 636
                                             'likes'     => [
637 637
                                                 'type'    => new IntType(),
638 638
                                                 'cost'    => 10,
639
-                                                'resolve' => function () {
639
+                                                'resolve' => function() {
640 640
                                                     return 42;
641 641
                                                 }
642 642
                                             ]
643 643
                                         ]
644 644
                                     ]
645 645
                                 ),
646
-                                'cost'    => function ($args, $context, $childCost) {
646
+                                'cost'    => function($args, $context, $childCost) {
647 647
                                     $argsCost = isset($args['cost']) ? $args['cost'] : 1;
648 648
 
649 649
                                     return 1 + $argsCost * $childCost;
650 650
                                 },
651
-                                'resolve' => function ($value, $args) {
651
+                                'resolve' => function($value, $args) {
652 652
                                     $data = ['firstName' => 'John', 'code' => '007'];
653 653
 
654 654
                                     return $data;
Please login to merge, or discard this patch.
src/Validator/ResolveValidator/ResolveValidator.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
     public function assertValidArguments(FieldInterface $field, AstFieldInterface $query, Request $request)
35 35
     {
36
-        $requiredArguments = array_filter($field->getArguments(), function (InputField $argument) {
36
+        $requiredArguments = array_filter($field->getArguments(), function(InputField $argument) {
37 37
             return $argument->getType()->getKind() == TypeMap::KIND_NON_NULL;
38 38
         });
39 39
 
Please login to merge, or discard this patch.
src/Type/InputObject/AbstractInputObjectType.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
         }
53 53
 
54 54
         $typeConfig     = $this->getConfig();
55
-        $requiredFields = array_filter($typeConfig->getFields(), function (FieldInterface $field) {
55
+        $requiredFields = array_filter($typeConfig->getFields(), function(FieldInterface $field) {
56 56
             return $field->getType()->getKind() == TypeMap::KIND_NON_NULL;
57 57
         });
58 58
 
@@ -81,7 +81,7 @@  discard block
 block discarded – undo
81 81
 
82 82
     public function parseValue($value)
83 83
     {
84
-        if($value instanceof InputObject) {
84
+        if ($value instanceof InputObject) {
85 85
             $value = $value->getValue();
86 86
         }
87 87
 
Please login to merge, or discard this patch.
src/Execution/Processor.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -375,7 +375,7 @@
 block discarded – undo
375 375
         $result = [];
376 376
         foreach ($resolvedValue as $resolvedValueItem) {
377 377
             try {
378
-                $fakeField->getConfig()->set('resolve', function () use ($resolvedValueItem) {
378
+                $fakeField->getConfig()->set('resolve', function() use ($resolvedValueItem) {
379 379
                     return $resolvedValueItem;
380 380
                 });
381 381
 
Please login to merge, or discard this patch.
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -221,6 +221,9 @@  discard block
 block discarded – undo
221 221
         }
222 222
     }
223 223
 
224
+    /**
225
+     * @param \Youshido\GraphQL\Parser\Ast\Interfaces\ValueInterface $argumentValue
226
+     */
224 227
     private function prepareArgumentValue($argumentValue, AbstractType $argumentType, Request $request)
225 228
     {
226 229
         switch ($argumentType->getKind()) {
@@ -314,6 +317,9 @@  discard block
 block discarded – undo
314 317
         }
315 318
     }
316 319
 
320
+    /**
321
+     * @param AstFieldInterface $ast
322
+     */
317 323
     private function collectResult(FieldInterface $field, AbstractObjectType $type, $ast, $resolvedValue)
318 324
     {
319 325
         /** @var AstQuery $ast */
Please login to merge, or discard this patch.
Tests/Library/Config/ConfigTest.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -80,7 +80,7 @@  discard block
 block discarded – undo
80 80
             ]
81 81
         ]);
82 82
 
83
-        $finalConfig = new TestConfig(['name' => $name . 'final', 'resolve' => function () { return []; }], $object, true);
83
+        $finalConfig = new TestConfig(['name' => $name.'final', 'resolve' => function() { return []; }], $object, true);
84 84
         $this->assertEquals($finalConfig->getType(), null);
85 85
 
86 86
         $rules['resolve']['required'] = true;
@@ -100,7 +100,7 @@  discard block
 block discarded – undo
100 100
      */
101 101
     public function testFinalRule()
102 102
     {
103
-        ConfigValidator::getInstance()->assertValidConfig(new TestConfig(['name' => 'Test' . 'final'], null, true));
103
+        ConfigValidator::getInstance()->assertValidConfig(new TestConfig(['name' => 'Test'.'final'], null, true));
104 104
     }
105 105
 
106 106
     /**
@@ -127,7 +127,7 @@  discard block
 block discarded – undo
127 127
                 ]
128 128
             ]
129 129
         ]);
130
-        $object   = new ObjectType([
130
+        $object = new ObjectType([
131 131
             'name' => 'Project',
132 132
             'fields' => [
133 133
                 'id' => new IdType(),
Please login to merge, or discard this patch.
Tests/Schema/InputParseTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
30 30
                             'from'   => new DateTimeType(),
31 31
                             'fromtz' => new DateTimeTzType(),
32 32
                         ],
33
-                        'resolve' => function ($source, $args) {
33
+                        'resolve' => function($source, $args) {
34 34
                             return sprintf('Result with %s date and %s tz',
35 35
                                 empty($args['from']) ? 'default' : $args['from'],
36 36
                                 empty($args['fromtz']) ? 'default' : $args['fromtz']
Please login to merge, or discard this patch.
src/Execution/Reducer.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -92,7 +92,7 @@
 block discarded – undo
92 92
      * Fragments (anonymous and named), and Fields.  The core of the function is simple: recurse until we hit the base
93 93
      * case of a Field and yield that back up to the visitor up in `doVisit`.
94 94
      *
95
-     * @param Query|Field|\Youshido\GraphQL\Parser\Ast\Interfaces\FragmentInterface $queryNode
95
+     * @param Query $queryNode
96 96
      * @param FieldInterface                                                        $currentLevelAST
97 97
      *
98 98
      * @return \Generator
Please login to merge, or discard this patch.