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
Pull Request — master (#8)
by
unknown
13:50
created
src/DbExporter/DbSeeding.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -81,7 +81,7 @@  discard block
 block discarded – undo
81 81
         // Get tables to ignore
82 82
         $config = config('db-exporter.seeds');
83 83
         $ignore_tables = collect([]);
84
-        if(!is_null($config) && !is_null($config['ignore_tables'])) {
84
+        if (!is_null($config) && !is_null($config['ignore_tables'])) {
85 85
             $ignore_tables = collect($config['ignore_tables']);
86 86
         }
87 87
 
@@ -89,7 +89,7 @@  discard block
 block discarded – undo
89 89
         // Loop over the tables
90 90
         foreach ($tables as $key => $value) 
91 91
         {
92
-            if($ignore_tables->contains($value['table_name'])) {
92
+            if ($ignore_tables->contains($value['table_name'])) {
93 93
                 continue;
94 94
             }
95 95
 
Please login to merge, or discard this patch.