You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
newInputArgument('name', InputArgument::OPTIONAL, 'The bundle name or the extension alias'),
38
+
newInputArgument('path', InputArgument::OPTIONAL, 'The configuration option path'),
37
39
))
38
40
->setDescription('Dumps the current configuration for an extension')
39
41
->setHelp(<<<EOF
@@ -60,14 +62,16 @@ protected function execute(InputInterface $input, OutputInterface $output)
60
62
if (null === $name = $input->getArgument('name')) {
61
63
$this->listBundles($io);
62
64
$io->comment('Provide the name of a bundle as the first argument of this command to dump its configuration. (e.g. <comment>debug:config FrameworkBundle</comment>)');
65
+
$io->comment('For dumping a specific option, add its path as the second argument of this command. (e.g. <comment>debug:config FrameworkBundle serializer</comment> to dump the <comment>framework.serializer</comment> configuration)');
0 commit comments