mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 06:08:52 +00:00
[ticket/12039] Fix option descriptions
PHPBB3-12039
This commit is contained in:
parent
e6749261f1
commit
de727b80e2
3 changed files with 3 additions and 3 deletions
|
@ -19,7 +19,7 @@ class delete extends command
|
|||
{
|
||||
$this
|
||||
->setName('config:delete')
|
||||
->setDescription("Sets a configuration option's value")
|
||||
->setDescription("Deletes a configuration option")
|
||||
->addArgument(
|
||||
'key',
|
||||
InputArgument::REQUIRED,
|
||||
|
|
|
@ -19,7 +19,7 @@ class increment extends command
|
|||
{
|
||||
$this
|
||||
->setName('config:increment')
|
||||
->setDescription("Sets a configuration option's value")
|
||||
->setDescription("Increment a configuration option's value")
|
||||
->addArgument(
|
||||
'key',
|
||||
InputArgument::REQUIRED,
|
||||
|
|
|
@ -19,7 +19,7 @@ class set_atomic extends command
|
|||
{
|
||||
$this
|
||||
->setName('config:set-atomic')
|
||||
->setDescription("Sets a configuration option's value")
|
||||
->setDescription("Sets a configuration option's value only if the old_value matches the current configuration value or the configuration value does not exist yet.")
|
||||
->addArgument(
|
||||
'key',
|
||||
InputArgument::REQUIRED,
|
||||
|
|
Loading…
Add table
Reference in a new issue