mirror of
https://github.com/flarum/framework.git
synced 2025-02-01 09:51:00 +08:00
Make console command descriptions consistent
This commit is contained in:
parent
238f2fca73
commit
cd4d669127
|
@ -19,7 +19,7 @@ class GenerateExtensionCommand extends AbstractCommand
|
||||||
{
|
{
|
||||||
$this
|
$this
|
||||||
->setName('generate:extension')
|
->setName('generate:extension')
|
||||||
->setDescription('Generate a Flarum extension skeleton.');
|
->setDescription('Generate a Flarum extension skeleton');
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -38,7 +38,7 @@ class GenerateMigrationCommand extends AbstractCommand
|
||||||
{
|
{
|
||||||
$this
|
$this
|
||||||
->setName('generate:migration')
|
->setName('generate:migration')
|
||||||
->setDescription('Generate a migration.')
|
->setDescription('Generate a migration')
|
||||||
->addArgument(
|
->addArgument(
|
||||||
'name',
|
'name',
|
||||||
InputArgument::REQUIRED,
|
InputArgument::REQUIRED,
|
||||||
|
|
|
@ -57,7 +57,7 @@ class InstallCommand extends AbstractCommand
|
||||||
{
|
{
|
||||||
$this
|
$this
|
||||||
->setName('install')
|
->setName('install')
|
||||||
->setDescription("Run Flarum's installation migration and seeds.")
|
->setDescription("Run Flarum's installation migration and seeds")
|
||||||
->addOption(
|
->addOption(
|
||||||
'defaults',
|
'defaults',
|
||||||
'd',
|
'd',
|
||||||
|
|
|
@ -37,7 +37,7 @@ class MigrateCommand extends AbstractCommand
|
||||||
{
|
{
|
||||||
$this
|
$this
|
||||||
->setName('migrate')
|
->setName('migrate')
|
||||||
->setDescription('Run outstanding migrations.');
|
->setDescription('Run outstanding migrations');
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue
Block a user