From d6e0d375a7f232cc4c3074c7cac035a6fc9088cb Mon Sep 17 00:00:00 2001 From: fokosun Date: Sat, 9 Sep 2023 21:06:30 -0400 Subject: [PATCH] static analysis fix --- app/Http/Controllers/UserController.php | 1 - 1 file changed, 1 deletion(-) diff --git a/app/Http/Controllers/UserController.php b/app/Http/Controllers/UserController.php index 379dfca7..f35df16d 100755 --- a/app/Http/Controllers/UserController.php +++ b/app/Http/Controllers/UserController.php @@ -122,7 +122,6 @@ public function followUser(Request $request) */ public function getWhoToFollow(Request $request, JWT $jwtAuth) { - /** @phpstan-ignore-next-line */ return ($jwtAuth->parseToken()->check()) ? $this->getWhoToFollowData($request->user()) : $this->unauthorizedResponse();