aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/console/command
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/phpbb/console/command')
-rw-r--r--phpBB/phpbb/console/command/config/delete.php2
-rw-r--r--phpBB/phpbb/console/command/config/increment.php2
-rw-r--r--phpBB/phpbb/console/command/config/set_atomic.php2
3 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/phpbb/console/command/config/delete.php b/phpBB/phpbb/console/command/config/delete.php
index 2b53f27098..af3d189445 100644
--- a/phpBB/phpbb/console/command/config/delete.php
+++ b/phpBB/phpbb/console/command/config/delete.php
@@ -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,
diff --git a/phpBB/phpbb/console/command/config/increment.php b/phpBB/phpbb/console/command/config/increment.php
index 06b2772230..5f5d03b50b 100644
--- a/phpBB/phpbb/console/command/config/increment.php
+++ b/phpBB/phpbb/console/command/config/increment.php
@@ -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,
diff --git a/phpBB/phpbb/console/command/config/set_atomic.php b/phpBB/phpbb/console/command/config/set_atomic.php
index 1393549a1e..ef2cb5c3e1 100644
--- a/phpBB/phpbb/console/command/config/set_atomic.php
+++ b/phpBB/phpbb/console/command/config/set_atomic.php
@@ -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,