diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2013-12-26 19:03:43 +0100 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2013-12-26 19:03:43 +0100 |
commit | 98200161fc642ce447395a4b8db3b1a3c674c734 (patch) | |
tree | 0d9fdc9a33f8fb697abe59919ac43647b46b2d81 /phpBB/phpbb/console | |
parent | 86e629e5338b1b21d3908eb2c8a01fe84ac18159 (diff) | |
download | forums-98200161fc642ce447395a4b8db3b1a3c674c734.tar forums-98200161fc642ce447395a4b8db3b1a3c674c734.tar.gz forums-98200161fc642ce447395a4b8db3b1a3c674c734.tar.bz2 forums-98200161fc642ce447395a4b8db3b1a3c674c734.tar.xz forums-98200161fc642ce447395a4b8db3b1a3c674c734.zip |
[ticket/12039] Update command descriptions
PHPBB3-12039
Diffstat (limited to 'phpBB/phpbb/console')
-rw-r--r-- | phpBB/phpbb/console/command/config/delete.php | 2 | ||||
-rw-r--r-- | phpBB/phpbb/console/command/config/increment.php | 2 | ||||
-rw-r--r-- | phpBB/phpbb/console/command/config/set_atomic.php | 2 |
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 af3d189445..5dbeeff20f 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("Deletes a configuration option") + ->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 5f5d03b50b..bc6b63c6ff 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("Increment a configuration option's value") + ->setDescription("Increments 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 ef2cb5c3e1..03e7a60210 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 only if the old_value matches the current configuration value or the configuration value does not exist yet.") + ->setDescription("Sets a configuration option's value only if the old matches the current value.") ->addArgument( 'key', InputArgument::REQUIRED, |