Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[BUGFIX] Hard code description for base commands as well #982

Merged
merged 1 commit into from Apr 11, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions Classes/Console/Mvc/Cli/Symfony/Command/HelpCommand.php
Expand Up @@ -53,6 +53,7 @@ protected function configure()
{
parent::configure();
$this->setAliases([]);
$this->setDescription('Display help for a command');
$this->setHelp(
<<<'EOF'
The <info>%command.name%</info> command displays help for a given command:
Expand Down
1 change: 1 addition & 0 deletions Classes/Console/Mvc/Cli/Symfony/Command/ListCommand.php
Expand Up @@ -30,6 +30,7 @@ protected function configure()
{
parent::configure();
$this->amendDefinition($this->getDefinition());
$this->setDescription('List commands');
$this->setHelp(
<<<'EOF'
The <info>%command.name%</info> command lists all commands:
Expand Down
2 changes: 1 addition & 1 deletion Documentation/CommandReference/Help.rst
Expand Up @@ -13,7 +13,7 @@ help
====


**Displays help for a command**
**Display help for a command**

The `help` command displays help for a given command:

Expand Down
2 changes: 1 addition & 1 deletion Documentation/CommandReference/List.rst
Expand Up @@ -13,7 +13,7 @@ list
====


**Lists commands**
**List commands**

The `list` command lists all commands:

Expand Down