Fixed typo in BaseMigrateController.php (#12033)

This commit is contained in:
Егор Малыгин
2016-07-28 18:34:48 +05:00
committed by Paul Klimov
parent aaff45ebf1
commit a2123d8bb9

View File

@ -257,7 +257,7 @@ abstract class BaseMigrateController extends Controller
}
foreach (array_reverse($migrations) as $migration) {
if (!$this->migrateUp($migration)) {
$this->stdout("\nMigration failed. The rest of the migrations migrations are canceled.\n", Console::FG_RED);
$this->stdout("\nMigration failed. The rest of the migrations are canceled.\n", Console::FG_RED);
return self::EXIT_CODE_ERROR;
}