@@ -71,7 +71,7 @@ |
||
| 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 | } |
@@ -14,7 +14,7 @@ |
||
| 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 | } |
@@ -37,7 +37,7 @@ |
||
| 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 | |