updated value argument to be array
parent
3c5500aa95
commit
7b00dfab4c
|
@ -40,7 +40,7 @@ class ConfigCommand extends Command
|
||||||
new InputOption('editor', 'e', InputOption::VALUE_NONE, 'Open editor'),
|
new InputOption('editor', 'e', InputOption::VALUE_NONE, 'Open editor'),
|
||||||
new InputOption('list', 'l', InputOption::VALUE_NONE, 'List configuration settings'),
|
new InputOption('list', 'l', InputOption::VALUE_NONE, 'List configuration settings'),
|
||||||
new InputArgument('setting-key', null, 'Setting key'),
|
new InputArgument('setting-key', null, 'Setting key'),
|
||||||
new InputArgument('setting-value', null, 'Setting value'),
|
new InputArgument('setting-value', InputArgument::IS_ARRAY, 'Setting value'),
|
||||||
))
|
))
|
||||||
// @todo Document
|
// @todo Document
|
||||||
->setHelp(<<<EOT
|
->setHelp(<<<EOT
|
||||||
|
|
Loading…
Reference in New Issue