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/Api/V1/Controllers/TransactionController.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -278,7 +278,7 @@
 block discarded – undo
278 278
         $data['user'] = auth()->user()->id;
279 279
 
280 280
         Log::channel('audit')
281
-           ->info('Store new transaction over API.', $data);
281
+            ->info('Store new transaction over API.', $data);
282 282
 
283 283
         try {
284 284
             $transactionGroup = $this->groupRepository->store($data);
Please login to merge, or discard this patch.
app/Support/Search/TransferSearch.php 2 patches
Indentation   +17 added lines, -17 removed lines patch added patch discarded remove patch
@@ -67,23 +67,23 @@
 block discarded – undo
67 67
         $user = auth()->user();
68 68
 
69 69
         $query = $user->transactionJournals()
70
-                      ->leftJoin(
71
-                          'transactions as source', static function (JoinClause $join) {
72
-                          $join->on('transaction_journals.id', '=', 'source.transaction_journal_id');
73
-                          $join->where('source.amount', '<', '0');
74
-                      }
75
-                      )
76
-                      ->leftJoin(
77
-                          'transactions as destination', static function (JoinClause $join) {
78
-                          $join->on('transaction_journals.id', '=', 'destination.transaction_journal_id');
79
-                          $join->where('destination.amount', '>', '0');
80
-                      }
81
-                      )
82
-                      ->where('source.account_id', $this->source->id)
83
-                      ->where('destination.account_id', $this->destination->id)
84
-                      ->where('transaction_journals.description', $this->description)
85
-                      ->where('destination.amount', $this->amount)
86
-                      ->where('transaction_journals.date', $this->date->format('Y-m-d 00:00:00'))
70
+                        ->leftJoin(
71
+                            'transactions as source', static function (JoinClause $join) {
72
+                            $join->on('transaction_journals.id', '=', 'source.transaction_journal_id');
73
+                            $join->where('source.amount', '<', '0');
74
+                        }
75
+                        )
76
+                        ->leftJoin(
77
+                            'transactions as destination', static function (JoinClause $join) {
78
+                            $join->on('transaction_journals.id', '=', 'destination.transaction_journal_id');
79
+                            $join->where('destination.amount', '>', '0');
80
+                        }
81
+                        )
82
+                        ->where('source.account_id', $this->source->id)
83
+                        ->where('destination.account_id', $this->destination->id)
84
+                        ->where('transaction_journals.description', $this->description)
85
+                        ->where('destination.amount', $this->amount)
86
+                        ->where('transaction_journals.date', $this->date->format('Y-m-d 00:00:00'))
87 87
         ;
88 88
 
89 89
         return $query->get(['transaction_journals.id', 'transaction_journals.transaction_group_id']);
Please login to merge, or discard this 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.