diff options
author | Tristan Darricau <tristan.darricau@sensiolabs.com> | 2015-09-02 12:44:52 +0200 |
---|---|---|
committer | Tristan Darricau <tristan.darricau@sensiolabs.com> | 2015-09-02 12:44:52 +0200 |
commit | 5faa12db4c4c02010e99c65e473024c018928603 (patch) | |
tree | a01f3aef54eb8d57509a41307ad3ae64a354fa58 /phpBB/phpbb | |
parent | 58af8606c1f075ca34a2d6b307a55e598e9f4817 (diff) | |
parent | 76158e429b10ce09a5f5b27a2d12a6f57bfa154f (diff) | |
download | forums-5faa12db4c4c02010e99c65e473024c018928603.tar forums-5faa12db4c4c02010e99c65e473024c018928603.tar.gz forums-5faa12db4c4c02010e99c65e473024c018928603.tar.bz2 forums-5faa12db4c4c02010e99c65e473024c018928603.tar.xz forums-5faa12db4c4c02010e99c65e473024c018928603.zip |
Merge pull request #3855 from VSEphpbb/ticket/14123
[ticket/14123] Add descriptive help to the CLI help output
* VSEphpbb/ticket/14123:
[ticket/14123] Fix typo
[ticket/14123] Remove redundant help messages
[ticket/14123] Add descriptive help to the CLI help output
Diffstat (limited to 'phpBB/phpbb')
-rw-r--r-- | phpBB/phpbb/console/command/cron/run.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/phpBB/phpbb/console/command/cron/run.php b/phpBB/phpbb/console/command/cron/run.php index 72ad1205ef..a9648fcd41 100644 --- a/phpBB/phpbb/console/command/cron/run.php +++ b/phpBB/phpbb/console/command/cron/run.php @@ -50,6 +50,7 @@ class run extends \phpbb\console\command\command $this ->setName('cron:run') ->setDescription($this->user->lang('CLI_DESCRIPTION_CRON_RUN')) + ->setHelp($this->user->lang('CLI_HELP_CRON_RUN')) ->addArgument('name', InputArgument::OPTIONAL, $this->user->lang('CLI_DESCRIPTION_CRON_RUN_ARGUMENT_1')) ; } |