Completed
Push — master ( 4406e7...95db8c )
by Alexandr
02:55
created
src/Execution/Processor.php 1 patch
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.
Tests/Schema/VariablesTest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@  discard block
 block discarded – undo
24 24
                         'args'    => [
25 25
                             'ids' => new ListType(new NonNullType(new IdType()))
26 26
                         ],
27
-                        'resolve' => function () {
27
+                        'resolve' => function() {
28 28
                             return 'item';
29 29
                         }
30 30
                     ],
@@ -85,7 +85,7 @@  discard block
 block discarded – undo
85 85
                         'args'    => [
86 86
                             'sortOrder' => new StringType(),
87 87
                         ],
88
-                        'resolve' => function ($args) {
88
+                        'resolve' => function($args) {
89 89
                             return sprintf('Result with %s order', empty($args['sortOrder']) ? 'default' : $args['sortOrder']);
90 90
                         },
91 91
                     ],
Please login to merge, or discard this patch.