We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 62afd7c + 52ce42f commit e26f1a1Copy full SHA for e26f1a1
bundles/prepend_extension.rst
@@ -82,6 +82,9 @@ in case a specific other bundle is not registered::
82
83
// process the configuration of AcmeHelloExtension
84
$configs = $container->getExtensionConfig($this->getAlias());
85
+ // resolve config parameters e.g. %kernel.debug% to boolean value
86
+ $resolvingBag = $container->getParameterBag();
87
+ $configs = $resolvingBag->resolveValue($configs);
88
// use the Configuration class to generate a config array with
89
// the settings "acme_hello"
90
$config = $this->processConfiguration(new Configuration(), $configs);
0 commit comments