From e1696205c744291d27b5bb2ce481cd69b36007ee Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Sun, 10 Jul 2016 11:35:03 -0500 Subject: [PATCH] consistency --- app/Exceptions/Handler.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/app/Exceptions/Handler.php b/app/Exceptions/Handler.php index 03161fdd..5a7c55b6 100644 --- a/app/Exceptions/Handler.php +++ b/app/Exceptions/Handler.php @@ -3,7 +3,6 @@ namespace App\Exceptions; use Exception; -use Illuminate\Auth\AuthenticationException; use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler; class Handler extends ExceptionHandler @@ -14,7 +13,7 @@ class Handler extends ExceptionHandler * @var array */ protected $dontReport = [ - AuthenticationException::class, + \Illuminate\Auth\AuthenticationException::class, \Illuminate\Auth\Access\AuthorizationException::class, \Symfony\Component\HttpKernel\Exception\HttpException::class, \Illuminate\Database\Eloquent\ModelNotFoundException::class,