diff options
author | Matt Friedman <maf675@gmail.com> | 2015-08-28 07:49:07 -0700 |
---|---|---|
committer | Matt Friedman <maf675@gmail.com> | 2015-08-28 07:49:07 -0700 |
commit | 6c36f56b12afcb97dbaa7cc248435df3e7a3fdc9 (patch) | |
tree | 3db6d53d9783e8fb4bfcadc575e79be6262c2f15 /phpBB/phpbb/console/command/extension | |
parent | 13851f308f57e0cda4c24f9a9a186aac912213d1 (diff) | |
download | forums-6c36f56b12afcb97dbaa7cc248435df3e7a3fdc9.tar forums-6c36f56b12afcb97dbaa7cc248435df3e7a3fdc9.tar.gz forums-6c36f56b12afcb97dbaa7cc248435df3e7a3fdc9.tar.bz2 forums-6c36f56b12afcb97dbaa7cc248435df3e7a3fdc9.tar.xz forums-6c36f56b12afcb97dbaa7cc248435df3e7a3fdc9.zip |
[ticket/14123] Remove redundant help messages
PHPBB3-14123
Diffstat (limited to 'phpBB/phpbb/console/command/extension')
4 files changed, 0 insertions, 4 deletions
diff --git a/phpBB/phpbb/console/command/extension/disable.php b/phpBB/phpbb/console/command/extension/disable.php index dae63c4076..1eee16cbd9 100644 --- a/phpBB/phpbb/console/command/extension/disable.php +++ b/phpBB/phpbb/console/command/extension/disable.php @@ -23,7 +23,6 @@ class disable extends command $this ->setName('extension:disable') ->setDescription($this->user->lang('CLI_DESCRIPTION_DISABLE_EXTENSION')) - ->setHelp($this->user->lang('CLI_HELP_DISABLE_EXTENSION')) ->addArgument( 'extension-name', InputArgument::REQUIRED, diff --git a/phpBB/phpbb/console/command/extension/enable.php b/phpBB/phpbb/console/command/extension/enable.php index 94baaa0f44..59ff11e9b7 100644 --- a/phpBB/phpbb/console/command/extension/enable.php +++ b/phpBB/phpbb/console/command/extension/enable.php @@ -23,7 +23,6 @@ class enable extends command $this ->setName('extension:enable') ->setDescription($this->user->lang('CLI_DESCRIPTION_ENABLE_EXTENSION')) - ->setHelp($this->user->lang('CLI_HELP_ENABLE_EXTENSION')) ->addArgument( 'extension-name', InputArgument::REQUIRED, diff --git a/phpBB/phpbb/console/command/extension/purge.php b/phpBB/phpbb/console/command/extension/purge.php index b9fa038a4b..517e9a74c9 100644 --- a/phpBB/phpbb/console/command/extension/purge.php +++ b/phpBB/phpbb/console/command/extension/purge.php @@ -23,7 +23,6 @@ class purge extends command $this ->setName('extension:purge') ->setDescription($this->user->lang('CLI_DESCRIPTION_PURGE_EXTENSION')) - ->setHelp($this->user->lang('CLI_HELP_PURGE_EXTENSION')) ->addArgument( 'extension-name', InputArgument::REQUIRED, diff --git a/phpBB/phpbb/console/command/extension/show.php b/phpBB/phpbb/console/command/extension/show.php index 2e703e7156..f9322034d7 100644 --- a/phpBB/phpbb/console/command/extension/show.php +++ b/phpBB/phpbb/console/command/extension/show.php @@ -22,7 +22,6 @@ class show extends command $this ->setName('extension:show') ->setDescription($this->user->lang('CLI_DESCRIPTION_LIST_EXTENSIONS')) - ->setHelp($this->user->lang('CLI_HELP_LIST_EXTENSIONS')) ; } |