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 ( 6d67f8...8413b3 )
by James
01:55
created
src/Listeners/DeleteDBToken.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -30,8 +30,8 @@
 block discarded – undo
30 30
         // check DB for token.
31 31
         try {
32 32
             DB::table('2fa_tokens')
33
-                       ->where('token', $token)
34
-                       ->where('user_id', $event->user->id)->delete();
33
+                        ->where('token', $token)
34
+                        ->where('user_id', $event->user->id)->delete();
35 35
         } catch (QueryException $e) {
36 36
             Log::error('Could not delete user token from database.');
37 37
         }
Please login to merge, or discard this patch.
src/ServiceProvider.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@  discard block
 block discarded – undo
19 19
     {
20 20
         $this->publishes(
21 21
             [
22
-                __DIR__ . '/config/config.php' => config_path('google2fa.php'),
22
+                __DIR__.'/config/config.php' => config_path('google2fa.php'),
23 23
             ]
24 24
         );
25 25
     }
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
     private function mergeConfig()
31 31
     {
32 32
         $this->mergeConfigFrom(
33
-            __DIR__ . '/config/config.php', 'google2fa'
33
+            __DIR__.'/config/config.php', 'google2fa'
34 34
         );
35 35
     }
36 36
 
@@ -43,7 +43,7 @@  discard block
 block discarded – undo
43 43
     {
44 44
         $this->app->register(EventServiceProvider::class);
45 45
         $this->app->singleton(
46
-            'pragmarx.google2fa', static function ($app) {
46
+            'pragmarx.google2fa', static function($app) {
47 47
 
48 48
             return $app->make(Google2FA::class);
49 49
         }
Please login to merge, or discard this patch.