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 ( ab1091...8c68ea )
by Toby
08:57
created
app/Jobs/UpdateResponses.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
27 27
     public function __construct(ModuleInstance $moduleInstance)
28 28
     {
29 29
         $this->moduleInstance = $moduleInstance;
30
-        if(!app(ModuleInstance::class)->exists) {
30
+        if (!app(ModuleInstance::class)->exists) {
31 31
             app()->instance(ModuleInstance::class, $moduleInstance);
32 32
         }
33 33
     }
@@ -45,7 +45,7 @@  discard block
 block discarded – undo
45 45
             return null;
46 46
         }
47 47
         
48
-        $responses = collect($client->allResponses($formId))->filter(function ($response) {
48
+        $responses = collect($client->allResponses($formId))->filter(function($response) {
49 49
             if (
50 50
                 isset($response['hidden']) 
51 51
                 && isset($response['hidden']['module_instance']) 
Please login to merge, or discard this patch.