From 7aa213a564b100ea7cb354caa9d22b723b087677 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Sat, 14 Nov 2020 09:16:47 -0600 Subject: [PATCH] add stub handler to exception handler --- app/Exceptions/Handler.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/app/Exceptions/Handler.php b/app/Exceptions/Handler.php index 7e40d735..f9644add 100644 --- a/app/Exceptions/Handler.php +++ b/app/Exceptions/Handler.php @@ -3,6 +3,7 @@ namespace App\Exceptions; use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler; +use Throwable; class Handler extends ExceptionHandler { @@ -32,6 +33,8 @@ class Handler extends ExceptionHandler */ public function register() { - // + $this->reportable(function (Throwable $e) { + // + }); } }