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 — develop ( c131e6...5e61fa )
by James
13:24 queued 01:39
created
app/Jobs/CreateRecurringTransactions.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -219,7 +219,7 @@  discard block
 block discarded – undo
219 219
         /** @var RecurrenceTransaction $transaction */
220 220
         foreach ($transactions as $index => $transaction) {
221 221
 
222
-            $single   = [
222
+            $single = [
223 223
                 'type'                  => strtolower($recurrence->transactionType->type),
224 224
                 'date'                  => $date,
225 225
                 'user'                  => $recurrence->user_id,
@@ -490,7 +490,7 @@  discard block
 block discarded – undo
490 490
     private function filterRecurrences(Collection $recurrences): Collection
491 491
     {
492 492
         return $recurrences->filter(
493
-            function (Recurrence $recurrence) {
493
+            function(Recurrence $recurrence) {
494 494
                 return $this->validRecurrence($recurrence);
495 495
             }
496 496
         );
Please login to merge, or discard this patch.