diff options
Diffstat (limited to 'phpBB/phpbb/console/command/config')
-rw-r--r-- | phpBB/phpbb/console/command/config/delete.php | 1 | ||||
-rw-r--r-- | phpBB/phpbb/console/command/config/get.php | 1 | ||||
-rw-r--r-- | phpBB/phpbb/console/command/config/increment.php | 1 | ||||
-rw-r--r-- | phpBB/phpbb/console/command/config/set.php | 1 | ||||
-rw-r--r-- | phpBB/phpbb/console/command/config/set_atomic.php | 1 |
5 files changed, 5 insertions, 0 deletions
diff --git a/phpBB/phpbb/console/command/config/delete.php b/phpBB/phpbb/console/command/config/delete.php index efd276d7e3..51fe2165eb 100644 --- a/phpBB/phpbb/console/command/config/delete.php +++ b/phpBB/phpbb/console/command/config/delete.php @@ -26,6 +26,7 @@ class delete extends command $this ->setName('config:delete') ->setDescription($this->user->lang('CLI_DESCRIPTION_DELETE_CONFIG')) + ->setHelp($this->user->lang('CLI_HELP_DELETE_CONFIG')) ->addArgument( 'key', InputArgument::REQUIRED, diff --git a/phpBB/phpbb/console/command/config/get.php b/phpBB/phpbb/console/command/config/get.php index 9c03b49a3d..688fafc753 100644 --- a/phpBB/phpbb/console/command/config/get.php +++ b/phpBB/phpbb/console/command/config/get.php @@ -27,6 +27,7 @@ class get extends command $this ->setName('config:get') ->setDescription($this->user->lang('CLI_DESCRIPTION_GET_CONFIG')) + ->setHelp($this->user->lang('CLI_HELP_GET_CONFIG')) ->addArgument( 'key', InputArgument::REQUIRED, diff --git a/phpBB/phpbb/console/command/config/increment.php b/phpBB/phpbb/console/command/config/increment.php index b4d7438b66..a29473a471 100644 --- a/phpBB/phpbb/console/command/config/increment.php +++ b/phpBB/phpbb/console/command/config/increment.php @@ -27,6 +27,7 @@ class increment extends command $this ->setName('config:increment') ->setDescription($this->user->lang('CLI_DESCRIPTION_INCREMENT_CONFIG')) + ->setHelp($this->user->lang('CLI_HELP_INCREMENT_CONFIG')) ->addArgument( 'key', InputArgument::REQUIRED, diff --git a/phpBB/phpbb/console/command/config/set.php b/phpBB/phpbb/console/command/config/set.php index 695de31013..14ee9a2deb 100644 --- a/phpBB/phpbb/console/command/config/set.php +++ b/phpBB/phpbb/console/command/config/set.php @@ -27,6 +27,7 @@ class set extends command $this ->setName('config:set') ->setDescription($this->user->lang('CLI_DESCRIPTION_SET_CONFIG')) + ->setHelp($this->user->lang('CLI_HELP_SET_CONFIG')) ->addArgument( 'key', InputArgument::REQUIRED, diff --git a/phpBB/phpbb/console/command/config/set_atomic.php b/phpBB/phpbb/console/command/config/set_atomic.php index e8c69a0885..cff89d5157 100644 --- a/phpBB/phpbb/console/command/config/set_atomic.php +++ b/phpBB/phpbb/console/command/config/set_atomic.php @@ -27,6 +27,7 @@ class set_atomic extends command $this ->setName('config:set-atomic') ->setDescription($this->user->lang('CLI_DESCRIPTION_SET_ATOMIC_CONFIG')) + ->setHelp($this->user->lang('CLI_HELP_SET_ATOMIC_CONFIG')) ->addArgument( 'key', InputArgument::REQUIRED, |