diff options
| author | Andreas Fischer <bantu@phpbb.com> | 2014-06-16 01:12:04 +0200 |
|---|---|---|
| committer | Andreas Fischer <bantu@phpbb.com> | 2014-06-16 01:12:04 +0200 |
| commit | fbbd835b2c9d447fb6a26d6170fffd4c60201ac4 (patch) | |
| tree | 68f5b89851480edd1f1ff05e348c9b1934c020e6 /phpBB/phpbb/console/command/config/set.php | |
| parent | a0d2c6ab140445104b3c22d307ab37723744b721 (diff) | |
| parent | f27be59cf1bc97ac9da6bc7f963b1e0c44ee248b (diff) | |
| download | forums-fbbd835b2c9d447fb6a26d6170fffd4c60201ac4.tar forums-fbbd835b2c9d447fb6a26d6170fffd4c60201ac4.tar.gz forums-fbbd835b2c9d447fb6a26d6170fffd4c60201ac4.tar.bz2 forums-fbbd835b2c9d447fb6a26d6170fffd4c60201ac4.tar.xz forums-fbbd835b2c9d447fb6a26d6170fffd4c60201ac4.zip | |
Merge branch 'develop-ascraeus' into develop
* develop-ascraeus: (30 commits)
[ticket/12715] Add missing new line in the notification manager
[ticket/12715] Cleanup comments in \phpbb\symfony_request
[ticket/12715] Cleanup comments in \phpbb\permissions
[ticket/12715] Cleanup comments in \phpbb\path_helper
[ticket/12715] Cleanup comments in \phpbb\pagination
[ticket/12715] Cleanup comments in \phpbb\datetime
[ticket/12715] Cleanup comments in \phpbb\content_visibility
[ticket/12715] Cleanup comments in \phpbb\tree\*
[ticket/12715] Cleanup comments in \phpbb\template\*
[ticket/12715] Cleanup comments in \phpbb\plupload\*
[ticket/12715] Cleanup comments in \phpbb\profilefields\*
[ticket/12715] Cleanup comments in \phpbb\passwords\*
[ticket/12715] Cleanup comments in \phpbb\notification\*
[ticket/12715] Cleanup comments in \phpbb\mimetype\*
[ticket/12715] Cleanup comments in \phpbb\message\*
[ticket/12715] Cleanup comments in \phpbb\log\*
[ticket/12715] Cleanup comments in \phpbb\lock\*
[ticket/12715] Cleanup comments in \phpbb\groupposition\*
[ticket/12715] Cleanup comments in \phpbb\feed\*
[ticket/12715] Cleanup comments in \phpbb\extension\*
...
Diffstat (limited to 'phpBB/phpbb/console/command/config/set.php')
| -rw-r--r-- | phpBB/phpbb/console/command/config/set.php | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/phpBB/phpbb/console/command/config/set.php b/phpBB/phpbb/console/command/config/set.php index fce1edb93e..587b7fb0de 100644 --- a/phpBB/phpbb/console/command/config/set.php +++ b/phpBB/phpbb/console/command/config/set.php @@ -19,6 +19,9 @@ use Symfony\Component\Console\Output\OutputInterface; class set extends command { + /** + * {@inheritdoc} + */ protected function configure() { $this @@ -43,6 +46,17 @@ class set extends command ; } + /** + * Executes the command config:set. + * + * Sets a configuration option's value. + * + * @param InputInterface $input An InputInterface instance + * @param OutputInterface $output An OutputInterface instance + * + * @return null + * @see \phpbb\config\config::set() + */ protected function execute(InputInterface $input, OutputInterface $output) { $key = $input->getArgument('key'); |
