| Q | A | ---------------- | ----- | Bug report? | yes | Feature request? | yes | BC Break report? | no | RFC? | no | Symfony version | any I switched from Nette\DI to Symfony\DI. I use config `statie.neon` with this parameter setup: ```yaml parameters: basePath: "https://tomasvotruba.cz" ``` I put all parameters to template: ```php # pseudo-code foreach ($this->container->getParameterBag()->all() as $key => $value) { $this->template->addValue($key, $value); } ``` But when I try to render: ```twig <!-- file.latte --> {$basePath} ``` I get error, because only `{$base**p**ath}` is available. Parameter names [are lowercased](https://github.com/symfony/symfony/blob/06e21f7597487a354dbaaa441b494e13a438cd8e/src/Symfony/Component/DependencyInjection/ParameterBag/ParameterBag.php#L52) in `ParameterBag::add()` method. I'd expect to keep the name same and not change it in any way. What's the reason for this? How can I make it work? Thank you