Skip to content

Commit

Permalink
[HttpKernel] use static late binding when dumping out container
Browse files Browse the repository at this point in the history
  • Loading branch information
tgabi333 committed Dec 2, 2013
1 parent 05b1755 commit 2e241cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Symfony/Component/HttpKernel/Kernel.php
Expand Up @@ -690,7 +690,7 @@ protected function dumpContainer(ConfigCache $cache, ContainerBuilder $container
$dumper = new PhpDumper($container);
$content = $dumper->dump(array('class' => $class, 'base_class' => $baseClass));
if (!$this->debug) {
$content = self::stripComments($content);
$content = static::stripComments($content);
}

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

0 comments on commit 2e241cc

Please sign in to comment.