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 ( 19e19f...6f9a2f )
by Albert
02:05
created
src/DbExporter/Commands/CopyToRemoteCommand.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -79,7 +79,9 @@
 block discarded – undo
79 79
         $options = $this->option();
80 80
         switch ($options) {
81 81
             case (($options['seeds'] === true) && ($options['migrations'] === true)):
82
-                if (!$this->upload('migrations')) return false;
82
+                if (!$this->upload('migrations')) {
83
+                    return false;
84
+                }
83 85
                 return $this->upload('seeds');
84 86
                 break;
85 87
             case $options['migrations'] === true:
Please login to merge, or discard this patch.
src/DbExporter/DbMigrations.php 1 patch
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -178,8 +178,9 @@
 block discarded – undo
178 178
             $tableIndexes = $this->getTableIndexes($value['table_name']);
179 179
             if (!is_null($tableIndexes) && count($tableIndexes)){
180 180
             	foreach ($tableIndexes as $index) {
181
-                    if(Str::endsWith($index['Key_name'], '_index'))
182
-                	   $up .= '                $' . "table->index('" . $index['Key_name'] . "');\n";
181
+                    if(Str::endsWith($index['Key_name'], '_index')) {
182
+                                    	   $up .= '                $' . "table->index('" . $index['Key_name'] . "');\n";
183
+                    }
183 184
                     }
184 185
             	}
185 186
 
Please login to merge, or discard this patch.