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.
Completed
Push — master ( 4d6146...b09b4a )
by James
01:51
created
src/Support/Authenticator.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -126,9 +126,9 @@
 block discarded – undo
126 126
 
127 127
         // check DB for token.
128 128
         $count = DB::table('2fa_tokens')
129
-                   ->where('token', $token)
130
-                   ->where('expires_at', '>', $time)
131
-                   ->where('user_id', $this->getUser()->id)->count();
129
+                    ->where('token', $token)
130
+                    ->where('expires_at', '>', $time)
131
+                    ->where('user_id', $this->getUser()->id)->count();
132 132
 
133 133
         return 1 === $count;
134 134
     }
Please login to merge, or discard this patch.