[DI] Remove dead dumper check

This commit is contained in:
Roland Franssen 2018-03-11 17:41:28 +01:00
parent 9f4459fe65
commit 6a5f071bff

View File

@ -1604,7 +1604,7 @@ EOF;
private function dumpParameter(string $name): string
{
if ($this->container->isCompiled() && $this->container->hasParameter($name)) {
if ($this->container->hasParameter($name)) {
$value = $this->container->getParameter($name);
$dumpedValue = $this->dumpValue($value, false);