]> BookStack Code Mirror - bookstack/blobdiff - app/Exceptions/Handler.php
Update auth.php
[bookstack] / app / Exceptions / Handler.php
index 0eb62dc31aab20388e8047a39788ee0c3990e4dc..70a53497599d36216ae82bcdd787ab1901247043 100644 (file)
@@ -3,12 +3,12 @@
 namespace BookStack\Exceptions;
 
 use Exception;
+use Illuminate\Auth\Access\AuthorizationException;
 use Illuminate\Auth\AuthenticationException;
-use Illuminate\Validation\ValidationException;
 use Illuminate\Database\Eloquent\ModelNotFoundException;
-use Symfony\Component\HttpKernel\Exception\HttpException;
 use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler;
-use Illuminate\Auth\Access\AuthorizationException;
+use Illuminate\Validation\ValidationException;
+use Symfony\Component\HttpKernel\Exception\HttpException;
 use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
 
 class Handler extends ExceptionHandler