PortIO/app/Exceptions/Handler.php

49 lines
1.0 KiB
PHP
Raw Normal View History

2023-03-14 14:33:06 +00:00
<?php
namespace App\Exceptions;
use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler;
use Throwable;
class Handler extends ExceptionHandler
{
/**
* A list of exception types with their corresponding custom log levels.
*
2023-03-15 13:42:40 +00:00
* @var array<class-string<Throwable>, \Psr\Log\LogLevel::*>
2023-03-14 14:33:06 +00:00
*/
protected $levels = [
//
];
/**
* A list of the exception types that are not reported.
*
2023-03-15 13:42:40 +00:00
* @var array<int, class-string<Throwable>>
2023-03-14 14:33:06 +00:00
*/
protected $dontReport = [
//
];
/**
* A list of the inputs that are never flashed to the session on validation exceptions.
*
* @var array<int, string>
*/
protected $dontFlash = [
'current_password',
'password',
'password_confirmation',
];
/**
* Register the exception handling callbacks for the application.
*/
public function register(): void
{
$this->reportable(function (Throwable $e) {
//
});
}
}