@@ -207,9 +207,9 @@ discard block |
||
207 | 207 | $time = microtime(true) - $start; |
208 | 208 | if ($input->getOption('separate-process')) { |
209 | 209 | // in case of using subprocesses, we can not measure max memory used |
210 | - $this->writeln("<info>Time taken: ".sprintf('%.2f', $time)." secs</info>"); |
|
210 | + $this->writeln("<info>Time taken: " . sprintf('%.2f', $time) . " secs</info>"); |
|
211 | 211 | } else { |
212 | - $this->writeln("<info>Time taken: ".sprintf('%.2f', $time)." secs, memory: ".sprintf('%.2f', (memory_get_peak_usage(true) / 1000000)). ' MB</info>'); |
|
212 | + $this->writeln("<info>Time taken: " . sprintf('%.2f', $time) . " secs, memory: " . sprintf('%.2f', (memory_get_peak_usage(true) / 1000000)) . ' MB</info>'); |
|
213 | 213 | } |
214 | 214 | |
215 | 215 | return $failed; |
@@ -433,7 +433,7 @@ discard block |
||
433 | 433 | $builderArgs[] = '--no-debug'; |
434 | 434 | } |
435 | 435 | if ($input->getOption('siteaccess')) { |
436 | - $builderArgs[]='--siteaccess='.$input->getOption('siteaccess'); |
|
436 | + $builderArgs[] = '--siteaccess=' . $input->getOption('siteaccess'); |
|
437 | 437 | } |
438 | 438 | // 'optional' options |
439 | 439 | // note: options 'clear-cache', 'ignore-failures', 'no-interaction', 'path', 'separate-process' and 'survive-disconnected-tty' we never propagate |