Check for deprecated method enterScope() in DumpCommand

This commit is contained in:
Patrick Pokatilo 2015-12-15 17:04:17 +01:00
parent 93b189b16a
commit 8c336487e7

View File

@ -61,7 +61,7 @@ class DumpCommand extends ContainerAwareCommand
$formatter->setEnableSandbox(false); $formatter->setEnableSandbox(false);
} }
if ('html' === $format) { if ('html' === $format && method_exists($this->getContainer(), 'enterScope')) {
$this->getContainer()->enterScope('request'); $this->getContainer()->enterScope('request');
$this->getContainer()->set('request', new Request(), 'request'); $this->getContainer()->set('request', new Request(), 'request');
} }