private property ErrorHandler::$levels

File

drupal/core/vendor/symfony/http-kernel/Symfony/Component/HttpKernel/Debug/ErrorHandler.php, line 21

Class

ErrorHandler
ErrorHandler.

Namespace

Symfony\Component\HttpKernel\Debug

Code

private $levels = array(
  E_WARNING => 'Warning',
  E_NOTICE => 'Notice',
  E_USER_ERROR => 'User Error',
  E_USER_WARNING => 'User Warning',
  E_USER_NOTICE => 'User Notice',
  E_STRICT => 'Runtime Notice',
  E_RECOVERABLE_ERROR => 'Catchable Fatal Error',
  E_DEPRECATED => 'Deprecated',
  E_USER_DEPRECATED => 'User Deprecated',
);