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.
Passed
Push — master ( 4d6ae7...16cec9 )
by James
54:32 queued 43:01
created
app/Console/Commands/Correction/DeleteEmptyGroups.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -54,10 +54,10 @@
 block discarded – undo
54 54
      */
55 55
     public function handle(): int
56 56
     {
57
-        $start  = microtime(true);
58
-        $groupIds  =
57
+        $start = microtime(true);
58
+        $groupIds =
59 59
             TransactionGroup
60
-            ::leftJoin('transaction_journals','transaction_groups.id','=','transaction_journals.transaction_group_id')
60
+            ::leftJoin('transaction_journals', 'transaction_groups.id', '=', 'transaction_journals.transaction_group_id')
61 61
             ->whereNull('transaction_journals.id')->get(['transaction_groups.id'])->pluck('id')->toArray();
62 62
 
63 63
         $total = count($groupIds);
Please login to merge, or discard this patch.