GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Passed
Push — master ( 9dc363...21b11b )
by Tharindu
04:02
created
app/Api/V1/Controllers/LogoutController.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -15,11 +15,11 @@
 block discarded – undo
15 15
      */
16 16
     public function logout()
17 17
     {
18
-        if (! Auth::user()->token()->revoke()) {
18
+        if (!Auth::user()->token()->revoke()) {
19 19
             throw new HttpException(500);
20 20
         }
21 21
 
22 22
         return response()
23
-            ->json(['message' => 'Successfully logged out']);
23
+            ->json([ 'message' => 'Successfully logged out' ]);
24 24
     }
25 25
 }
Please login to merge, or discard this patch.