From cfd428bfcb0d4117c9f2b1c201bceda96a906f20 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Fri, 28 Aug 2020 10:06:23 -0500 Subject: [PATCH] add dontReport property --- app/Exceptions/Handler.php | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/app/Exceptions/Handler.php b/app/Exceptions/Handler.php index f0f3ebd8..7e40d735 100644 --- a/app/Exceptions/Handler.php +++ b/app/Exceptions/Handler.php @@ -6,6 +6,15 @@ use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler; 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. *