class ErrorHandler extends ErrorHandler
deprecated
since version 2.3, to be removed in 3.0. Use the same class from the Debug component instead.
ErrorHandler.
Constants
TYPE_DEPRECATION |
Methods
static ErrorHandler | register(ErrorHandler|null|int $handler = null, bool $replace = true) Registers the error handler. | from ErrorHandler |
__construct(BufferingLogger $bootstrappingLogger = null) | from ErrorHandler | |
setDefaultLogger(LoggerInterface $logger, array|int $levels = null, bool $replace = false) Sets a logger to non assigned errors levels. | from ErrorHandler | |
array | setLoggers(array $loggers) Sets a logger for each error level. | from ErrorHandler |
callable|null | setExceptionHandler(callable $handler) Sets a user exception handler. | from ErrorHandler |
int | throwAt(int $levels, bool $replace = false) Sets the PHP error levels that throw an exception when a PHP error occurs. | from ErrorHandler |
int | scopeAt(int $levels, bool $replace = false) Sets the PHP error levels for which local variables are preserved. | from ErrorHandler |
int | traceAt(int $levels, bool $replace = false) Sets the PHP error levels for which the stack trace is preserved. | from ErrorHandler |
int | screamAt(int $levels, bool $replace = false) Sets the error levels where the @-operator is ignored. | from ErrorHandler |
bool | handleError($type, $message, $file, $line, array $context, array $backtrace = null) Handles errors by filtering then logging them according to the configured bit fields. | from ErrorHandler |
handleException(Exception|Throwable $exception, array $error = null) Handles an exception by logging then forwarding it to another handler. | from ErrorHandler | |
static | handleFatalError(array $error = null) Shutdown registered function for handling PHP fatal errors. | from ErrorHandler |
static | stackErrors() Configures the error handler for delayed handling. | from ErrorHandler |
static | unstackErrors() Unstacks stacked errors and forwards to the logger. | from ErrorHandler |
setLevel(int|null $level) deprecated Sets the level at which the conversion to Exception is done. | from ErrorHandler | |
setDisplayErrors(int $displayErrors) deprecated Sets the display_errors flag value. | from ErrorHandler | |
static | setLogger(LoggerInterface $logger, string $channel = 'deprecation') deprecated Sets a logger for the given channel. | from ErrorHandler |
handle($level, $message, $file = 'unknown', $line, $context = array()) deprecated | from ErrorHandler | |
handleFatal() deprecated Handles PHP fatal errors. | from ErrorHandler |
Details
static ErrorHandler register(ErrorHandler|null|int $handler = null, bool $replace = true)
Registers the error handler.
__construct(BufferingLogger $bootstrappingLogger = null)
setDefaultLogger(LoggerInterface $logger, array|int $levels = null, bool $replace = false)
Sets a logger to non assigned errors levels.
array setLoggers(array $loggers)
Sets a logger for each error level.
callable|null setExceptionHandler(callable $handler)
Sets a user exception handler.
int throwAt(int $levels, bool $replace = false)
Sets the PHP error levels that throw an exception when a PHP error occurs.
int scopeAt(int $levels, bool $replace = false)
Sets the PHP error levels for which local variables are preserved.
int traceAt(int $levels, bool $replace = false)
Sets the PHP error levels for which the stack trace is preserved.
int screamAt(int $levels, bool $replace = false)
Sets the error levels where the @-operator is ignored.
bool handleError($type, $message, $file, $line, array $context, array $backtrace = null)
Handles errors by filtering then logging them according to the configured bit fields.
handleException(Exception|Throwable $exception, array $error = null)
Handles an exception by logging then forwarding it to another handler.
static handleFatalError(array $error = null)
Shutdown registered function for handling PHP fatal errors.
static stackErrors()
Configures the error handler for delayed handling.
Ensures also that non-catchable fatal errors are never silenced.
As shown by http://bugs.php.net/42098 and http://bugs.php.net/60724 PHP has a compile stage where it behaves unusually. To workaround it, we plug an error handler that only stacks errors for later.
The most important feature of this is to prevent autoloading until unstackErrors() is called.
static unstackErrors()
Unstacks stacked errors and forwards to the logger.
setLevel(int|null $level) deprecated
deprecated
since version 2.6, to be removed in 3.0. Use throwAt() instead.Sets the level at which the conversion to Exception is done.
setDisplayErrors(int $displayErrors) deprecated
deprecated
since version 2.6, to be removed in 3.0. Use throwAt() instead.Sets the display_errors flag value.
static setLogger(LoggerInterface $logger, string $channel = 'deprecation') deprecated
deprecated
since version 2.6, to be removed in 3.0. Use setLoggers() or setDefaultLogger() instead.Sets a logger for the given channel.
handle($level, $message, $file = 'unknown', $line, $context = array()) deprecated
deprecated
since version 2.6, to be removed in 3.0. Use handleError() instead.handleFatal() deprecated
deprecated
since version 2.6, to be removed in 3.0. Use handleFatalError() instead.Handles PHP fatal errors.
Please login to continue.