From 115083bdf2b4b7791f287746c739ad36b251d768 Mon Sep 17 00:00:00 2001 From: Nic Date: Wed, 30 Dec 2015 12:06:35 +0200 Subject: [PATCH 1/2] Fix tab to spaces in web.config --- public/web.config | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/web.config b/public/web.config index 2da2a959..624c1760 100644 --- a/public/web.config +++ b/public/web.config @@ -15,7 +15,7 @@ - + From c83c0b97f10f0ffcabb5c8819dac86cd9f0bd9eb Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Thu, 14 Jan 2016 10:08:49 -0600 Subject: [PATCH 2/2] change exception --- app/Exceptions/Handler.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Exceptions/Handler.php b/app/Exceptions/Handler.php index a4ada88a..53617ef4 100644 --- a/app/Exceptions/Handler.php +++ b/app/Exceptions/Handler.php @@ -3,10 +3,10 @@ namespace App\Exceptions; use Exception; +use Illuminate\Validation\ValidationException; use Illuminate\Auth\Access\AuthorizationException; use Illuminate\Database\Eloquent\ModelNotFoundException; use Symfony\Component\HttpKernel\Exception\HttpException; -use Illuminate\Foundation\Validation\ValidationException; use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler; class Handler extends ExceptionHandler