diff options
author | Matt Friedman <maf675@gmail.com> | 2015-08-23 15:14:08 -0700 |
---|---|---|
committer | Matt Friedman <maf675@gmail.com> | 2015-08-23 15:14:08 -0700 |
commit | 13851f308f57e0cda4c24f9a9a186aac912213d1 (patch) | |
tree | a0e7b47fb5ba11f39cba80f852cf6421d4720553 /phpBB/phpbb/console/command/cron/run.php | |
parent | ef3de412b71259642022d5027817fceb5247552a (diff) | |
download | forums-13851f308f57e0cda4c24f9a9a186aac912213d1.tar forums-13851f308f57e0cda4c24f9a9a186aac912213d1.tar.gz forums-13851f308f57e0cda4c24f9a9a186aac912213d1.tar.bz2 forums-13851f308f57e0cda4c24f9a9a186aac912213d1.tar.xz forums-13851f308f57e0cda4c24f9a9a186aac912213d1.zip |
[ticket/14123] Add descriptive help to the CLI help output
PHPBB3-14123
Diffstat (limited to 'phpBB/phpbb/console/command/cron/run.php')
-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')) ; } |