Skip to content

Commit 2e241cc

Browse files
committed
[HttpKernel] use static late binding when dumping out container
1 parent 05b1755 commit 2e241cc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Component/HttpKernel/Kernel.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -690,7 +690,7 @@ protected function dumpContainer(ConfigCache $cache, ContainerBuilder $container
690690
$dumper = new PhpDumper($container);
691691
$content = $dumper->dump(array('class' => $class, 'base_class' => $baseClass));
692692
if (!$this->debug) {
693-
$content = self::stripComments($content);
693+
$content = static::stripComments($content);
694694
}
695695

696696
$cache->write($content, $container->getResources());

0 commit comments

Comments
 (0)