mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-30 21:40:43 +02:00
[ticket/12715] Update console command config:* comments
PHPBB3-12715
This commit is contained in:
@@ -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');
|
||||
|
Reference in New Issue
Block a user