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 ( 949e4f...88f205 )
by Gabriel
15:48 queued 55s
created
resources/views/admin/formbuilder-fields/modules/lists/existing.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -52,8 +52,8 @@
 block discarded – undo
52 52
                             <li>
53 53
                                 <a href="<?= $field->compileURL('delete'); ?>" class="dropdown-item action-delete"
54 54
                                    onclick="return confirm('<?= translator()->trans(
55
-                                       'general.messages.confirm'
56
-                                   ); ?>');">
55
+                                        'general.messages.confirm'
56
+                                    ); ?>');">
57 57
                                     <i class="far fa-trash-alt"></i>
58 58
                                     <?= translator()->trans('delete'); ?>
59 59
                                 </a>
Please login to merge, or discard this patch.
src/FormFields/Models/FormFields/FormFieldTrait.php 1 patch
Indentation   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -109,18 +109,18 @@
 block discarded – undo
109 109
     public function populateFromSibling($sibling)
110 110
     {
111 111
         foreach ([
112
-                     'role',
113
-                     'label',
114
-                     'label_intern',
115
-                     'help',
116
-                     'options',
117
-                     'type',
118
-                     'listing',
119
-                     'visible',
120
-                     'mandatory',
121
-                     'filter',
122
-                     'pos',
123
-                 ] as $col) {
112
+                        'role',
113
+                        'label',
114
+                        'label_intern',
115
+                        'help',
116
+                        'options',
117
+                        'type',
118
+                        'listing',
119
+                        'visible',
120
+                        'mandatory',
121
+                        'filter',
122
+                        'pos',
123
+                    ] as $col) {
124 124
             $this->setPropertyValue($col, $sibling->getPropertyRaw($col));
125 125
         }
126 126
         $this->initOptions();
Please login to merge, or discard this patch.