Skip to content

Commit e47e8b1

Browse files
committed
formatting
1 parent f930498 commit e47e8b1

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/Illuminate/Database/Migrations/Migrator.php

+4-4
Original file line numberDiff line numberDiff line change
@@ -171,8 +171,8 @@ protected function runUp($file, $batch, $pretend)
171171
if ($pretend) {
172172
return $this->pretendToRun($migration, 'up');
173173
}
174-
175-
$this->note("<info>Migrating:</info> {$name}");
174+
175+
$this->note("<comment>Migrating:</comment> {$name}");
176176

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

@@ -318,8 +318,8 @@ protected function runDown($file, $migration, $pretend)
318318
$instance = $this->resolve(
319319
$name = $this->getMigrationName($file)
320320
);
321-
322-
$this->note("<info>Rolling back:</info> {$name}");
321+
322+
$this->note("<comment>Rolling back:</comment> {$name}");
323323

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

0 commit comments

Comments
 (0)