Skip to content

Commit 560eb8f

Browse files
committed
minor #526 Update success message in MakeMigration (PGLongo)
This PR was merged into the 1.0-dev branch. Discussion ---------- Update success message in MakeMigration I've always found annoying and frustrating that running `make:entity` the output is > Next: When you're ready, create a migration with `make:migration ` instead of > Next: When you're ready, create a migration with `php bin/console make:migration ` As ` make:migration` does > Then: Run the migration with `php bin/console doctrine:migrations:migrate` Commits ------- a8d02d0 Fix success message in MakeMigration
2 parents 344a181 + a8d02d0 commit 560eb8f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Maker/MakeEntity.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ public function generate(InputInterface $input, ConsoleStyle $io, Generator $gen
256256

257257
$this->writeSuccessMessage($io);
258258
$io->text([
259-
'Next: When you\'re ready, create a migration with <comment>make:migration</comment>',
259+
'Next: When you\'re ready, create a migration with <info>php bin/console make:migration</info>',
260260
'',
261261
]);
262262
}

0 commit comments

Comments
 (0)