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 ( 6d40cc...ad2111 )
by Renato
27s queued 12s
created
src/Http/Middleware/MaintenanceModeMiddleware.php 3 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@
 block discarded – undo
42 42
                 return new Response(app()['view']->make('errors.503'), 503);
43 43
             }
44 44
 
45
-             if(config('maintenance')){
45
+                if(config('maintenance')){
46 46
                 return response(config('maintenance')["response"], config('maintenance')["httpCode"]);
47 47
             }else{
48 48
                 return app()->abort(503, 'The application is down for maintenance.');
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -42,9 +42,9 @@
 block discarded – undo
42 42
                 return new Response(app()['view']->make('errors.503'), 503);
43 43
             }
44 44
 
45
-             if(config('maintenance')){
45
+             if (config('maintenance')) {
46 46
                 return response(config('maintenance')["response"], config('maintenance')["httpCode"]);
47
-            }else{
47
+            } else {
48 48
                 return app()->abort(503, 'The application is down for maintenance.');
49 49
             }
50 50
         }
Please login to merge, or discard this patch.
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@
 block discarded – undo
44 44
 
45 45
              if(config('maintenance')){
46 46
                 return response(config('maintenance')["response"], config('maintenance')["httpCode"]);
47
-            }else{
47
+            } else{
48 48
                 return app()->abort(503, 'The application is down for maintenance.');
49 49
             }
50 50
         }
Please login to merge, or discard this patch.