Skip to content

Commit 26f588a

Browse files
committed
Fix unresolved parameters from default bundle configs in debug:config
1 parent c360a22 commit 26f588a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Bundle/FrameworkBundle/Command/ConfigDebugCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ protected function execute(InputInterface $input, OutputInterface $output)
9090
$output->writeln(sprintf('# Current configuration for "%s"', $name));
9191
}
9292

93-
$output->writeln(Yaml::dump(array($extension->getAlias() => $config), 10));
93+
$output->writeln(Yaml::dump(array($extension->getAlias() => $container->getParameterBag()->resolveValue($config)), 10));
9494
}
9595

9696
private function compileContainer()

0 commit comments

Comments
 (0)