merged branch willdurand/deprecated-error-handler (PR #4096)

Commits
-------

c89f3d3 [HttpKernel] Added DEPRECATED errors

Discussion
----------

Deprecated error handler
This commit is contained in:
Fabien Potencier 2012-04-24 14:15:41 +02:00
commit f6f4ba941b

View File

@ -26,6 +26,8 @@ class ErrorHandler
E_USER_NOTICE => 'User Notice',
E_STRICT => 'Runtime Notice',
E_RECOVERABLE_ERROR => 'Catchable Fatal Error',
E_DEPRECATED => 'Deprecated',
E_USER_DEPRECATED => 'User Deprecated',
);
private $level;