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 ( 7cfa91...64a2f2 )
by James
31:27 queued 21:57
created
app/Support/Search/TransferSearch.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -68,13 +68,13 @@
 block discarded – undo
68 68
 
69 69
         $query = $user->transactionJournals()
70 70
                       ->leftJoin(
71
-                          'transactions as source', static function (JoinClause $join) {
71
+                          'transactions as source', static function(JoinClause $join) {
72 72
                           $join->on('transaction_journals.id', '=', 'source.transaction_journal_id');
73 73
                           $join->where('source.amount', '<', '0');
74 74
                       }
75 75
                       )
76 76
                       ->leftJoin(
77
-                          'transactions as destination', static function (JoinClause $join) {
77
+                          'transactions as destination', static function(JoinClause $join) {
78 78
                           $join->on('transaction_journals.id', '=', 'destination.transaction_journal_id');
79 79
                           $join->where('destination.amount', '>', '0');
80 80
                       }
Please login to merge, or discard this patch.