Make console command descriptions consistent

This commit is contained in:
Franz Liedke 2016-03-20 23:16:08 +09:00
parent 238f2fca73
commit cd4d669127
4 changed files with 4 additions and 4 deletions

View File

@ -19,7 +19,7 @@ class GenerateExtensionCommand extends AbstractCommand
{
$this
->setName('generate:extension')
->setDescription('Generate a Flarum extension skeleton.');
->setDescription('Generate a Flarum extension skeleton');
}
/**

View File

@ -38,7 +38,7 @@ class GenerateMigrationCommand extends AbstractCommand
{
$this
->setName('generate:migration')
->setDescription('Generate a migration.')
->setDescription('Generate a migration')
->addArgument(
'name',
InputArgument::REQUIRED,

View File

@ -57,7 +57,7 @@ class InstallCommand extends AbstractCommand
{
$this
->setName('install')
->setDescription("Run Flarum's installation migration and seeds.")
->setDescription("Run Flarum's installation migration and seeds")
->addOption(
'defaults',
'd',

View File

@ -37,7 +37,7 @@ class MigrateCommand extends AbstractCommand
{
$this
->setName('migrate')
->setDescription('Run outstanding migrations.');
->setDescription('Run outstanding migrations');
}
/**