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 ( d418d7...a60a1a )
by Gabriel
14:59
created
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
         $redirect = $form->getURL();
79 79
         $this->flashRedirect($this->getModelManager()->getMessage('import.success'), $redirect);
@@ -90,7 +90,7 @@  discard block
 block discarded – undo
90 90
     protected function bootFormbuilderFormsControllerTrait()
91 91
     {
92 92
         $this->after(
93
-            function () {
93
+            function() {
94 94
                 $this->registerFormbuilderViewPaths();
95 95
             }
96 96
         );
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
         $redirect = $form->getURL();
79 81
         $this->flashRedirect($this->getModelManager()->getMessage('import.success'), $redirect);
Please login to merge, or discard this patch.