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 ( eee44a...b0d49a )
by Gabriel
14:11
created
src/FormFields/Actions/GenerateInitialFormFields.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -36,7 +36,9 @@
 block discarded – undo
36 36
     public static function forForm(Form $form, $fieldsCollection = null): static
37 37
     {
38 38
         $action = new static($form, $fieldsCollection);
39
-        $action->setConsumer(GetConsumerForForm::for($form)->handle());
39
+        $action->setConsumer(GetConsumerForForm::for($form) {
40
+            ->handle());
41
+        }
40 42
 
41 43
         return $action;
42 44
     }
Please login to merge, or discard this patch.
src/FormFieldTypes/Actions/FindFieldTypeForConsumer.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,9 @@
 block discarded – undo
31 31
 
32 32
     public static function forForm($form)
33 33
     {
34
-        $consumer = GetConsumerForForm::for($form)->handle();
34
+        $consumer = GetConsumerForForm::for($form) {
35
+            ->handle();
36
+        }
35 37
 
36 38
         return self::forConsumer($consumer);
37 39
     }
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
@@ -36,7 +36,9 @@
 block discarded – undo
36 36
         $action = new static($fieldList);
37 37
         $action->setForm($form);
38 38
         $action->setConsumerGenerateCallback(function () use ($form) {
39
-            return GetConsumerForForm::for($form)->handle();
39
+            return GetConsumerForForm::for($form) {
40
+                ->handle();
41
+            }
40 42
         });
41 43
 
42 44
         $action->setConsumerConfigGenerateCallback(function () use ($action) {
Please login to merge, or discard this patch.