[Debug] fix #10313: FlattenException not found because of https://bugs.php.net/42098

This commit is contained in:
Nicolas Grekas 2014-04-29 21:42:43 +02:00
parent 585b61db95
commit b147cfaf15
1 changed files with 3 additions and 0 deletions

View File

@ -125,6 +125,9 @@ class ErrorHandler
if (!class_exists('Symfony\Component\Debug\Exception\ContextErrorException')) {
require __DIR__.'/Exception/ContextErrorException.php';
}
if (!class_exists('Symfony\Component\Debug\Exception\FlattenException')) {
require __DIR__.'/Exception/FlattenException.php';
}
if (PHP_VERSION_ID < 50400 && isset($context['GLOBALS']) && is_array($context)) {
unset($context['GLOBALS']);