Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
taylorotwell committed Mar 16, 2017
1 parent f930498 commit e47e8b1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/Illuminate/Database/Migrations/Migrator.php
Original file line number Diff line number Diff line change
Expand Up @@ -171,8 +171,8 @@ protected function runUp($file, $batch, $pretend)
if ($pretend) {
return $this->pretendToRun($migration, 'up');
}
$this->note("<info>Migrating:</info> {$name}");

$this->note("<comment>Migrating:</comment> {$name}");

$this->runMigration($migration, 'up');

Expand Down Expand Up @@ -318,8 +318,8 @@ protected function runDown($file, $migration, $pretend)
$instance = $this->resolve(
$name = $this->getMigrationName($file)
);
$this->note("<info>Rolling back:</info> {$name}");

$this->note("<comment>Rolling back:</comment> {$name}");

if ($pretend) {
return $this->pretendToRun($instance, 'down');
Expand Down

0 comments on commit e47e8b1

Please sign in to comment.