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 ( b06cd5...a26aef )
by Albert
04:00 queued 01:46
created
src/DbExporter/DbMigrations.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -155,18 +155,18 @@
 block discarded – undo
155 155
 
156 156
             $tableIndexes = $this->getTableIndexes($value['table_name']);
157 157
             if (!is_null($tableIndexes) && count($tableIndexes)){
158
-            	foreach ($tableIndexes as $index) {
158
+                foreach ($tableIndexes as $index) {
159 159
                     if(Str::endsWith($index['Key_name'], '_index')) {
160
-                                    	   $up .= '                $' . "table->index('" . $index['Key_name'] . "');\n";
160
+                                            $up .= '                $' . "table->index('" . $index['Key_name'] . "');\n";
161 161
                     }
162 162
                     }
163
-            	}
163
+                }
164 164
 
165 165
             $up .= "            });\n\n";
166 166
             $Constraint = $ConstraintDown = "";
167 167
             /** 
168
-            * @var array $tableConstraints 
169
-            */
168
+             * @var array $tableConstraints 
169
+             */
170 170
             $tableConstraints = $this->getTableConstraints($value['table_name']);
171 171
             if (!is_null($tableConstraints) && count($tableConstraints)) {
172 172
             $Constraint = $ConstraintDown = "
Please login to merge, or discard this patch.