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 ( 04ff05...d418d7 )
by Gabriel
11:27
created
src/Forms/Actions/ImportForm.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@
 block discarded – undo
10 10
 {
11 11
     use HasSubject;
12 12
 
13
-    protected Form|null $source = null;
13
+    protected Form | null $source = null;
14 14
 
15 15
 
16 16
     public function handle()
Please login to merge, or discard this patch.
src/Forms/Actions/ImportLinksFromConsumerToFormFieldsDesigner.php 3 patches
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -36,8 +36,8 @@
 block discarded – undo
36 36
     {
37 37
         $sourceForm = FormGenerateForConsumer::for($consumer)->handle();
38 38
         $this->getSubject()->addImportLink([
39
-           'name' => $consumer->getName(),
40
-           'href' => $this->generateImportLink($this->form, $sourceForm),
39
+            'name' => $consumer->getName(),
40
+            'href' => $this->generateImportLink($this->form, $sourceForm),
41 41
         ]);
42 42
     }
43 43
 
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
 
35 35
     protected function addDesignerImportLink($consumer)
36 36
     {
37
-        $sourceForm = FormGenerateForConsumer::for($consumer)->handle();
37
+        $sourceForm = FormGenerateForConsumer::for ($consumer)->handle();
38 38
         $this->getSubject()->addImportLink([
39 39
            'name' => $consumer->getName(),
40 40
            'href' => $this->generateImportLink($this->form, $sourceForm),
@@ -43,6 +43,6 @@  discard block
 block discarded – undo
43 43
 
44 44
     protected function generateImportLink($form, $sourceForm)
45 45
     {
46
-        return $form->compileUrl('import',['form_id' => $sourceForm->id]);
46
+        return $form->compileUrl('import', ['form_id' => $sourceForm->id]);
47 47
     }
48 48
 }
49 49
\ No newline at end of file
Please login to merge, or discard this patch.
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,9 @@
 block discarded – undo
34 34
 
35 35
     protected function addDesignerImportLink($consumer)
36 36
     {
37
-        $sourceForm = FormGenerateForConsumer::for($consumer)->handle();
37
+        $sourceForm = FormGenerateForConsumer::for($consumer) {
38
+            ->handle();
39
+        }
38 40
         $this->getSubject()->addImportLink([
39 41
            'name' => $consumer->getName(),
40 42
            'href' => $this->generateImportLink($this->form, $sourceForm),
Please login to merge, or discard this patch.
application/Modules/Admin/Controllers/FormbuilderFormsControllerTrait.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -73,7 +73,7 @@  discard block
 block discarded – undo
73 73
             $this->flashRedirect($this->getModelManager()->getMessage('import.error'), $form->getURL(), 'error');
74 74
         }
75 75
 
76
-        ImportForm::for($form)->withSource($fromForm)->handle();
76
+        ImportForm::for ($form)->withSource($fromForm)->handle();
77 77
 
78 78
         $this->flashRedirect($this->getModelManager()->getMessage('import.success'), $redirect);
79 79
     }
@@ -89,7 +89,7 @@  discard block
 block discarded – undo
89 89
     protected function bootFormbuilderFormsControllerTrait()
90 90
     {
91 91
         $this->after(
92
-            function () {
92
+            function() {
93 93
                 $this->registerFormbuilderViewPaths();
94 94
             }
95 95
         );
Please login to merge, or discard this patch.
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -73,7 +73,9 @@
 block discarded – undo
73 73
             $this->flashRedirect($this->getModelManager()->getMessage('import.error'), $form->getURL(), 'error');
74 74
         }
75 75
 
76
-        ImportForm::for($form)->withSource($fromForm)->handle();
76
+        ImportForm::for($form) {
77
+            ->withSource($fromForm)->handle();
78
+        }
77 79
 
78 80
         $this->flashRedirect($this->getModelManager()->getMessage('import.success'), $redirect);
79 81
     }
Please login to merge, or discard this patch.