aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/console/command/config/get.php
diff options
context:
space:
mode:
authorTristan Darricau <github@nicofuma.fr>2014-06-15 12:19:24 +0200
committerTristan Darricau <github@nicofuma.fr>2014-06-15 16:39:34 +0200
commit413754af1f2d10aae366f8255d0d91ec7e6fd878 (patch)
tree2f684648b0d299d2c533b50cbefada1b28681698 /phpBB/phpbb/console/command/config/get.php
parent48b19ac37c8494f798f101f1964c6eb9996c2165 (diff)
downloadforums-413754af1f2d10aae366f8255d0d91ec7e6fd878.tar
forums-413754af1f2d10aae366f8255d0d91ec7e6fd878.tar.gz
forums-413754af1f2d10aae366f8255d0d91ec7e6fd878.tar.bz2
forums-413754af1f2d10aae366f8255d0d91ec7e6fd878.tar.xz
forums-413754af1f2d10aae366f8255d0d91ec7e6fd878.zip
[ticket/12715] Update console command config:* comments
PHPBB3-12715
Diffstat (limited to 'phpBB/phpbb/console/command/config/get.php')
-rw-r--r--phpBB/phpbb/console/command/config/get.php14
1 files changed, 14 insertions, 0 deletions
diff --git a/phpBB/phpbb/console/command/config/get.php b/phpBB/phpbb/console/command/config/get.php
index 0ed2a12608..20164f0da1 100644
--- a/phpBB/phpbb/console/command/config/get.php
+++ b/phpBB/phpbb/console/command/config/get.php
@@ -19,6 +19,9 @@ use Symfony\Component\Console\Output\OutputInterface;
class get extends command
{
+ /**
+ * {@inheritdoc}
+ */
protected function configure()
{
$this
@@ -38,6 +41,17 @@ class get extends command
;
}
+ /**
+ * Executes the command config:get.
+ *
+ * Retrieves a configuration value.
+ *
+ * @param InputInterface $input An InputInterface instance
+ * @param OutputInterface $output An OutputInterface instance
+ *
+ * @return null
+ * @see \phpbb\config\config::offsetGet()
+ */
protected function execute(InputInterface $input, OutputInterface $output)
{
$key = $input->getArgument('key');