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 ( 373559...e8e41b )
by Gabriel
12:25
created
resources/views/admin/formbuilder-fields/modules/panels/index-existing.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@
 block discarded – undo
19 19
     <?php if ($fields) { ?>
20 20
         <div class="form-panel">
21 21
             <div class="header">
22
-                <?php echo $manager->getLabel('existing.'.$role) ?>
22
+                <?php echo $manager->getLabel('existing.' . $role) ?>
23 23
             </div>
24 24
             <div class="fields-body">
25 25
                 <?php
Please login to merge, or discard this patch.
src/FormFieldTypes/Actions/FindFieldTypeForConsumer.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@  discard block
 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)->handle();
35 35
 
36 36
         return self::forConsumer($consumer);
37 37
     }
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
         $action = new static();
42 42
         $action->setConsumer($consumer);
43 43
         $action->setConsumerConfig($consumerConfig);
44
-        $action->setConsumerConfigGenerateCallback(function () use ($consumer) {
44
+        $action->setConsumerConfigGenerateCallback(function() use ($consumer) {
45 45
             return GetConsumerConfig::forConsumer($consumer)->handle();
46 46
         });
47 47
 
Please login to merge, or discard this patch.