Passed
Branch 1.x (b9c1b4)
by Khairi
16:05
created
Category
src/DatasourceRegistry.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -71,7 +71,7 @@
 block discarded – undo
71 71
         string $method,
72 72
         array $args
73 73
     ): callable {
74
-        return function (array $input) use ($service, $method, $args) {
74
+        return function(array $input) use ($service, $method, $args) {
75 75
             foreach ($args as $index => $expression) {
76 76
                 $args[$index] = $this->getValueRecursive($input, $expression);
77 77
             }
Please login to merge, or discard this patch.
src/Configurator/GroupConfigurator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@
 block discarded – undo
14 14
         // @codeCoverageIgnoreStart
15 15
         $or->setAllowedValues(
16 16
             'group',
17
-            function ($value) {
17
+            function($value) {
18 18
                 if (is_null($value)) {
19 19
                     return true;
20 20
                 }
Please login to merge, or discard this patch.
src/Configurator/DatasourceConfigurator.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
                 $dataSource['args']
38 38
             );
39 39
 
40
-            $wrappedCall = function () use ($context, $dataCall, $datasourceConfig) {
40
+            $wrappedCall = function() use ($context, $dataCall, $datasourceConfig) {
41 41
                 return $this->callDatasource($context, $dataCall, $datasourceConfig);
42 42
             };
43 43
 
Please login to merge, or discard this patch.