add levels to handler

This commit is contained in:
Taylor Otwell 2022-04-12 09:30:44 -05:00
parent b630eae0b3
commit a507e14243

View File

@ -7,6 +7,15 @@ use Throwable;
class Handler extends ExceptionHandler
{
/**
* A list of exceptions with their corresponding custom log levels.
*
* @var array<class-string<\Throwable>, \Psr\Log\LogLevel::*>
*/
protected $levels = [
//
];
/**
* A list of the exception types that are not reported.
*