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.
Test Setup Failed
Push — master ( 66d3f0...d3a122 )
by Gabriel
14:57
created
src/FormFieldTypes/Actions/InstanceFormFieldType.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -39,7 +39,9 @@
 block discarded – undo
39 39
             return new $this->type;
40 40
         }
41 41
 
42
-        $consumer = GetConsumerForForm::for($this->form)->handle();
42
+        $consumer = GetConsumerForForm::for($this->form) {
43
+            ->handle();
44
+        }
43 45
     }
44 46
 
45 47
 
Please login to merge, or discard this patch.
src/FormFields/Actions/GenerateFormFieldsDesigner.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -59,7 +59,9 @@
 block discarded – undo
59 59
     public function getConsumer(): Consumer
60 60
     {
61 61
         if ($this->consumer === null) {
62
-            $this->consumer = GetConsumerForForm::for($this->form)->handle();
62
+            $this->consumer = GetConsumerForForm::for($this->form) {
63
+                ->handle();
64
+            }
63 65
         }
64 66
 
65 67
         return $this->consumer;
Please login to merge, or discard this patch.