Don't resolve the Deprecation error handler mode until a deprecation is triggered

This commit is contained in:
Emmanuel BORGES 2019-03-08 14:06:20 +01:00 committed by Nicolas Grekas
parent eb2972e7f7
commit f3a5b74dfd

View File

@ -105,8 +105,7 @@ class DeprecationErrorHandler
'remaining vendor' => array(),
];
$deprecationHandler = function ($type, $msg, $file, $line, $context = array()) use (&$deprecations, $getMode, $UtilPrefix, $inVendors) {
$mode = $getMode();
if ((E_USER_DEPRECATED !== $type && E_DEPRECATED !== $type) || DeprecationErrorHandler::MODE_DISABLED === $mode) {
if ((E_USER_DEPRECATED !== $type && E_DEPRECATED !== $type) || DeprecationErrorHandler::MODE_DISABLED === $mode = $getMode()) {
$ErrorHandler = $UtilPrefix.'ErrorHandler';
return $ErrorHandler::handleError($type, $msg, $file, $line, $context);