clrghouz/app/Exceptions/Handler.php

41 lines
753 B
PHP
Raw Normal View History

2018-11-15 10:45:49 +00:00
<?php
namespace App\Exceptions;
use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler;
2021-05-03 12:53:40 +00:00
use Throwable;
2018-11-15 10:45:49 +00:00
class Handler extends ExceptionHandler
{
/**
* A list of the exception types that are not reported.
*
* @var array
*/
protected $dontReport = [
//
];
/**
* A list of the inputs that are never flashed for validation exceptions.
*
* @var array
*/
protected $dontFlash = [
'password',
'password_confirmation',
];
/**
2021-05-03 12:53:40 +00:00
* Register the exception handling callbacks for the application.
2018-11-15 10:45:49 +00:00
*
* @return void
*/
2021-05-03 12:53:40 +00:00
public function register()
2018-11-15 10:45:49 +00:00
{
2021-05-03 12:53:40 +00:00
$this->reportable(function (Throwable $e) {
//
});
2018-11-15 10:45:49 +00:00
}
}