@@ -248,7 +248,7 @@ |
||
248 | 248 | |
249 | 249 | protected function createQueryParams(): array |
250 | 250 | { |
251 | - $params = array_reduce($this->commands, function (array $acc, Command $command) { |
|
251 | + $params = array_reduce($this->commands, function(array $acc, Command $command) { |
|
252 | 252 | $name = $command->getName(); |
253 | 253 | $acc[$name] = $command->getParamsQuery(); |
254 | 254 |
@@ -13,7 +13,7 @@ |
||
13 | 13 | public function __construct(string $name, array $params) |
14 | 14 | { |
15 | 15 | $this->name = $name; |
16 | - $this->params = array_filter($params, function ($value) { |
|
16 | + $this->params = array_filter($params, function($value) { |
|
17 | 17 | return $value !== null; |
18 | 18 | }); |
19 | 19 | } |