Passed
Branch master (e21735)
by Alexpts
06:58
created
Category
src/PTS/ServiceResizeClient/Client.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -248,7 +248,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
src/PTS/ServiceResizeClient/Command.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
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
     }
Please login to merge, or discard this patch.