Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. ErrorHandler.php

ErrorHandler::$levels

Type: levels

File

vendor/symfony/error-handler/ErrorHandler.php, line 53

Class

ErrorHandler
A generic ErrorHandler for the PHP engine.

Namespace

Symfony\Component\ErrorHandler

Code

private array $levels = [
    \E_DEPRECATED => 'Deprecated',
    \E_USER_DEPRECATED => 'User Deprecated',
    \E_NOTICE => 'Notice',
    \E_USER_NOTICE => 'User Notice',
    \E_WARNING => 'Warning',
    \E_USER_WARNING => 'User Warning',
    \E_COMPILE_WARNING => 'Compile Warning',
    \E_CORE_WARNING => 'Core Warning',
    \E_USER_ERROR => 'User Error',
    \E_RECOVERABLE_ERROR => 'Catchable Fatal Error',
    \E_COMPILE_ERROR => 'Compile Error',
    \E_PARSE => 'Parse Error',
    \E_ERROR => 'Error',
    \E_CORE_ERROR => 'Core Error',
];

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal