aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/console/command/config/delete.php
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2013-11-27 14:16:34 +0100
committerJoas Schilling <nickvergessen@gmx.de>2013-11-27 14:16:34 +0100
commite6749261f1797cd4bb9b93398ed92ae5d9c32b26 (patch)
tree47ad5a6e1c67e692be4638a16b2dca09def14c68 /phpBB/phpbb/console/command/config/delete.php
parentd5743f008d9221f4199570fb0a6cb63d0cf88038 (diff)
downloadforums-e6749261f1797cd4bb9b93398ed92ae5d9c32b26.tar
forums-e6749261f1797cd4bb9b93398ed92ae5d9c32b26.tar.gz
forums-e6749261f1797cd4bb9b93398ed92ae5d9c32b26.tar.bz2
forums-e6749261f1797cd4bb9b93398ed92ae5d9c32b26.tar.xz
forums-e6749261f1797cd4bb9b93398ed92ae5d9c32b26.zip
[ticket/12039] Use an abstract class and some more minor adjustments
PHPBB3-12039
Diffstat (limited to 'phpBB/phpbb/console/command/config/delete.php')
-rw-r--r--phpBB/phpbb/console/command/config/delete.php31
1 files changed, 7 insertions, 24 deletions
diff --git a/phpBB/phpbb/console/command/config/delete.php b/phpBB/phpbb/console/command/config/delete.php
index 1f397904ca..2b53f27098 100644
--- a/phpBB/phpbb/console/command/config/delete.php
+++ b/phpBB/phpbb/console/command/config/delete.php
@@ -10,46 +10,29 @@ namespace phpbb\console\command\config;
use Symfony\Component\Console\Input\InputArgument;
use Symfony\Component\Console\Input\InputInterface;
+use Symfony\Component\Console\Input\InputOption;
use Symfony\Component\Console\Output\OutputInterface;
-class delete extends \phpbb\console\command\command
+class delete extends command
{
- /** @var \phpbb\config\config */
- protected $config;
-
- function __construct(\phpbb\config\config $config)
- {
- $this->config = $config;
-
- parent::__construct();
- }
-
protected function configure()
{
$this
->setName('config:delete')
- ->setDescription('Sets a configuration option\'s value')
+ ->setDescription("Sets a configuration option's value")
->addArgument(
- 'config-key',
+ 'key',
InputArgument::REQUIRED,
- 'The configuration option\'s name'
- )
- ->addArgument(
- 'use-cache',
- InputArgument::OPTIONAL,
- 'Whether this variable should be cached or if it changes too frequently to be efficiently cached.',
- true
+ "The configuration option's name"
)
;
}
protected function execute(InputInterface $input, OutputInterface $output)
{
- $key = $input->getArgument('config-key');
- $use_cache = $input->getArgument('use-cache');
- $use_cache = (strtolower($use_cache) !== 'false' && $use_cache);
+ $key = $input->getArgument('key');
- $this->config->delete($key, $use_cache);
+ $this->config->delete($key);
$output->writeln("<info>Successfully deleted config $key</info>");
}