Passed
Push — master ( 770b11...06da84 )
by Gaetano
07:24
created
Command/MigrateCommand.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -201,9 +201,9 @@  discard block
 block discarded – undo
201 201
         $time = microtime(true) - $start;
202 202
         if ($input->getOption('separate-process')) {
203 203
             // in case of using subprocesses, we can not measure max memory used
204
-            $this->writeln("<info>Time taken: ".sprintf('%.2f', $time)." secs</info>");
204
+            $this->writeln("<info>Time taken: " . sprintf('%.2f', $time) . " secs</info>");
205 205
         } else {
206
-            $this->writeln("<info>Time taken: ".sprintf('%.2f', $time)." secs, memory: ".sprintf('%.2f', (memory_get_peak_usage(true) / 1000000)). ' MB</info>');
206
+            $this->writeln("<info>Time taken: " . sprintf('%.2f', $time) . " secs, memory: " . sprintf('%.2f', (memory_get_peak_usage(true) / 1000000)) . ' MB</info>');
207 207
         }
208 208
 
209 209
         if (!$aborted && $input->getOption('clear-cache')) {
@@ -433,7 +433,7 @@  discard block
 block discarded – undo
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
Please login to merge, or discard this patch.