2016-05-19 15:01:28 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Exceptions;
|
|
|
|
|
|
|
|
use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler;
|
2020-06-13 16:32:42 +01:00
|
|
|
use Throwable;
|
2016-05-19 15:01:28 +01:00
|
|
|
|
|
|
|
class Handler extends ExceptionHandler
|
|
|
|
{
|
|
|
|
/**
|
2023-06-09 14:07:24 +01:00
|
|
|
* Register the exception handling callbacks for the application.
|
2016-05-19 15:01:28 +01:00
|
|
|
*/
|
2023-06-09 14:07:24 +01:00
|
|
|
public function register(): void
|
2016-05-19 15:01:28 +01:00
|
|
|
{
|
2023-06-25 14:18:40 +01:00
|
|
|
$this->reportable(function (Throwable $_e) {
|
2023-06-09 14:07:24 +01:00
|
|
|
//
|
|
|
|
});
|
2016-09-06 16:40:39 +01:00
|
|
|
}
|
2016-05-19 15:01:28 +01:00
|
|
|
}
|