@@ -213,9 +213,9 @@ discard block |
||
213 | 213 | $time = microtime(true) - $start; |
214 | 214 | if ($input->getOption('separate-process')) { |
215 | 215 | // in case of using subprocesses, we can not measure max memory used |
216 | - $this->writeln("<info>Time taken: ".sprintf('%.2f', $time)." secs</info>"); |
|
216 | + $this->writeln("<info>Time taken: " . sprintf('%.2f', $time) . " secs</info>"); |
|
217 | 217 | } else { |
218 | - $this->writeln("<info>Time taken: ".sprintf('%.2f', $time)." secs, memory: ".sprintf('%.2f', (memory_get_peak_usage(true) / 1000000)). ' MB</info>'); |
|
218 | + $this->writeln("<info>Time taken: " . sprintf('%.2f', $time) . " secs, memory: " . sprintf('%.2f', (memory_get_peak_usage(true) / 1000000)) . ' MB</info>'); |
|
219 | 219 | } |
220 | 220 | |
221 | 221 | return $failed; |
@@ -442,7 +442,7 @@ discard block |
||
442 | 442 | $builderArgs[] = '--no-debug'; |
443 | 443 | } |
444 | 444 | if ($input->getOption('siteaccess')) { |
445 | - $builderArgs[] = '--siteaccess='.$input->getOption('siteaccess'); |
|
445 | + $builderArgs[] = '--siteaccess=' . $input->getOption('siteaccess'); |
|
446 | 446 | } |
447 | 447 | switch ($this->verbosity) { |
448 | 448 | case OutputInterface::VERBOSITY_VERBOSE: |