Skip to content

Commit

Permalink
missed one
Browse files Browse the repository at this point in the history
  • Loading branch information
Spadbob authored Oct 16, 2019
1 parent de619e4 commit 8c03083
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Phpmig/Migration/Migrator.php
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ protected function run(Migration $migration, $direction = 'up')
$migration->getVersion() . ' ' .
$migration->getName() . '</info> ' .
'<comment>' .
($direction -- 'up' ? 'migrating' : 'reverting') .
($direction == 'up' ? 'migrating' : 'reverting') .
'</comment>'
));
$start = microtime(1);
Expand Down

0 comments on commit 8c03083

Please sign in to comment.