@@ -197,7 +197,7 @@ discard block |
||
| 197 | 197 | |
| 198 | 198 | if ($input->getOption('todo')) { |
| 199 | 199 | foreach ($data as $migrationData) { |
| 200 | - $output->writeln("$migrationData", OutputInterface::OUTPUT_RAW|OutputInterface::VERBOSITY_QUIET); |
|
| 200 | + $output->writeln("$migrationData", OutputInterface::OUTPUT_RAW | OutputInterface::VERBOSITY_QUIET); |
|
| 201 | 201 | } |
| 202 | 202 | return 0; |
| 203 | 203 | } |
@@ -226,7 +226,7 @@ discard block |
||
| 226 | 226 | */ |
| 227 | 227 | protected function sortMigrationIndex(array &$index, $sortBy) |
| 228 | 228 | { |
| 229 | - switch($sortBy) { |
|
| 229 | + switch ($sortBy) { |
|
| 230 | 230 | case 'execution': |
| 231 | 231 | uasort($index, function($m1, $m2) { |
| 232 | 232 | if (isset($m1['migration']) && $m1['migration']->executionDate !== null) { |