Apply fixes from StyleCI

This commit is contained in:
StyleCI Bot
2023-01-07 21:45:37 +00:00
parent a8a0743b2c
commit 9fe2d79a9f

View File

@@ -3,15 +3,14 @@
namespace App\Exceptions; namespace App\Exceptions;
use Bugsnag\BugsnagLaravel\Facades\Bugsnag; use Bugsnag\BugsnagLaravel\Facades\Bugsnag;
use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler;
use Illuminate\Http\Exceptions\HttpResponseException;
use Illuminate\Support\Facades\Config;
use Illuminate\Support\Facades\Lang;
use Exception; use Exception;
use Illuminate\Support\Facades\App;
use Illuminate\Auth\Access\AuthorizationException; use Illuminate\Auth\Access\AuthorizationException;
use Illuminate\Database\Eloquent\ModelNotFoundException; use Illuminate\Database\Eloquent\ModelNotFoundException;
use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler;
use Illuminate\Http\Exceptions\HttpResponseException;
use Illuminate\Session\TokenMismatchException; use Illuminate\Session\TokenMismatchException;
use Illuminate\Support\Facades\App;
use Illuminate\Support\Facades\Config;
use Illuminate\Validation\ValidationException; use Illuminate\Validation\ValidationException;
use Symfony\Component\HttpKernel\Exception\MethodNotAllowedHttpException; use Symfony\Component\HttpKernel\Exception\MethodNotAllowedHttpException;
use Symfony\Component\HttpKernel\Exception\NotFoundHttpException; use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
@@ -35,8 +34,10 @@ class Handler extends ExceptionHandler
/** /**
* @param \Throwable $e * @param \Throwable $e
* @return void *
* @throws \Throwable * @throws \Throwable
*
* @return void
*/ */
public function report(\Throwable $e) public function report(\Throwable $e)
{ {
@@ -74,8 +75,10 @@ class Handler extends ExceptionHandler
/** /**
* @param $request * @param $request
* @param \Throwable $e * @param \Throwable $e
* @return type|\Illuminate\Http\JsonResponse|\Illuminate\Http\RedirectResponse|\Illuminate\Http\Response|\Symfony\Component\HttpFoundation\Response *
* @throws \Throwable * @throws \Throwable
*
* @return type|\Illuminate\Http\JsonResponse|\Illuminate\Http\RedirectResponse|\Illuminate\Http\Response|\Symfony\Component\HttpFoundation\Response
*/ */
public function render($request, \Throwable $e) public function render($request, \Throwable $e)
{ {
@@ -225,4 +228,4 @@ class Handler extends ExceptionHandler
return parent::render($request, $e); return parent::render($request, $e);
} }
} }