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
$io->comment('Provide the name of a bundle as the first argument of this command to dump its configuration.');
63
-
$io->newLine();
64
-
$this->listBundles($output);
60
+
if (null === $name = $input->getArgument('name')) {
61
+
$this->listBundles($io);
62
+
$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>)');
$io->comment('Provide the name of a bundle as the first argument of this command to dump its default configuration.');
75
-
$io->newLine();
76
-
$this->listBundles($output);
72
+
if (null === $name = $input->getArgument('name')) {
73
+
$this->listBundles($io);
74
+
$io->comment('Provide the name of a bundle as the first argument of this command to dump its default configuration. (e.g. <comment>config:dump-reference FrameworkBundle</comment>)');
0 commit comments