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 ( a820fc...a4a351 )
by
unknown
04:48
created
src/Http/Middleware/Authorize.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
 
16 16
     protected function allowedToUseTinker(): bool
17 17
     {
18
-        if (! config('web-tinker.enabled')) {
18
+        if (!config('web-tinker.enabled')) {
19 19
             return false;
20 20
         }
21 21
 
Please login to merge, or discard this patch.
src/WebTinkerServiceProvider.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
             EncryptCookies::class,
53 53
             StartSession::class,
54 54
             Authorize::class,
55
-        ])->group(function () {
55
+        ])->group(function() {
56 56
             Route::get('/', [WebTinkerController::class, 'index']);
57 57
             Route::post('/', [WebTinkerController::class, 'execute']);
58 58
         });
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
 
63 63
     protected function registerWebTinkerGate()
64 64
     {
65
-        Gate::define('viewWebTinker', function ($user = null) {
65
+        Gate::define('viewWebTinker', function($user = null) {
66 66
             return app()->environment('local');
67 67
         });
68 68
 
Please login to merge, or discard this patch.
src/Tinker.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -79,7 +79,7 @@
 block discarded – undo
79 79
     {
80 80
         $tokens = collect(token_get_all("<?php\n".$code.'?>'));
81 81
 
82
-        return $tokens->reduce(function ($carry, $token) {
82
+        return $tokens->reduce(function($carry, $token) {
83 83
             if (is_string($token)) {
84 84
                 return $carry.$token;
85 85
             }
Please login to merge, or discard this patch.