@@ -182,7 +182,7 @@ discard block |
||
182 | 182 | return 0; |
183 | 183 | } |
184 | 184 | |
185 | - $callback = function (string $output) { |
|
185 | + $callback = function(string $output) { |
|
186 | 186 | $output = preg_replace('/\n$/', '', $output); |
187 | 187 | if (strlen($output) !== 0) { |
188 | 188 | $this->output->writeln($output); |
@@ -192,7 +192,7 @@ discard block |
||
192 | 192 | /** @var Process[] $processes */ |
193 | 193 | $processes = []; |
194 | 194 | |
195 | - $this->server->loop->futureTick(function () use (&$processes, $hosts, $task) { |
|
195 | + $this->server->loop->futureTick(function() use (&$processes, $hosts, $task) { |
|
196 | 196 | foreach ($hosts as $host) { |
197 | 197 | $processes[] = $this->createProcess($host, $task); |
198 | 198 | } |
@@ -202,7 +202,7 @@ discard block |
||
202 | 202 | } |
203 | 203 | }); |
204 | 204 | |
205 | - $this->server->loop->addPeriodicTimer(0.03, function ($timer) use (&$processes, $callback) { |
|
205 | + $this->server->loop->addPeriodicTimer(0.03, function($timer) use (&$processes, $callback) { |
|
206 | 206 | $this->gatherOutput($processes, $callback); |
207 | 207 | if ($this->output->isDecorated() && !getenv('CI')) { |
208 | 208 | $this->output->write(spinner()); |