class DebugHandlersListener implements EventSubscriberInterface
Configures errors and exceptions handlers.
__construct(callable $exceptionHandler = null, LoggerInterface $logger = null, array|int $levels = E_ALL, int|null $throwAt = E_ALL, bool $scream = true, string|array $fileLinkFormat = null, bool $scope = true) | ||
configure(Event $event = null) Configures the error handler. | ||
static array | getSubscribedEvents() Returns an array of event names this subscriber wants to listen to. |
callable | $exceptionHandler | A handler that will be called on Exception |
LoggerInterface | $logger | A PSR-3 logger |
array|int | $levels | An array map of E_* to LogLevel::* or an integer bit field of E_* constants |
int|null | $throwAt | Thrown errors in a bit field of E_* constants, or null to keep the current value |
bool | $scream | Enables/disables screaming mode, where even silenced errors are logged |
string|array | $fileLinkFormat | The format for links to source files |
bool | $scope | Enables/disables scoping mode |
Configures the error handler.
Event | $event |
Returns an array of event names this subscriber wants to listen to.
The array keys are event names and the value can be:
For instance:
array | The event names to listen to |
© 2004–2017 Fabien Potencier
Licensed under the MIT License.
https://api.symfony.com/4.1/Symfony/Component/HttpKernel/EventListener/DebugHandlersListener.html