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 ( c4a5a0...da5fbd )
by Albert
06:11 queued 11s
created
src/DbExporter/SeederHelper.php 1 patch
Braces   +3 added lines, -6 removed lines patch added patch discarded remove patch
@@ -13,13 +13,11 @@  discard block
 block discarded – undo
13 13
     		if(\DB::table($table)->where('id', $item['id'])->count() > 0) 
14 14
     		{
15 15
     			\DB::table($table)->where('id', $item['id'])->update($item);
16
-    		} 
17
-    		else 
16
+    		} else 
18 17
     		{
19 18
     			\DB::table($table)->insert($item);
20 19
     		}
21
-        } 
22
-        else 
20
+        } else 
23 21
         {
24 22
         	$ids = collect($item)->filter(function($item, $key) {
25 23
         		return str_contains($key, '_id');
@@ -38,8 +36,7 @@  discard block
 block discarded – undo
38 36
         	if($object->count() > 0) 
39 37
     		{
40 38
     			$object->update($item);
41
-    		} 
42
-    		else 
39
+    		} else 
43 40
     		{
44 41
     			$object->insert($item);
45 42
     		}
Please login to merge, or discard this patch.