From 8ba4c07069ea9b209614ea25de5383294e55b402 Mon Sep 17 00:00:00 2001 From: David Bomba Date: Mon, 24 Oct 2022 20:00:01 +1100 Subject: [PATCH] Always force a baseType --- app/Jobs/Bank/MatchBankTransactions.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/Jobs/Bank/MatchBankTransactions.php b/app/Jobs/Bank/MatchBankTransactions.php index 401f3892b79e..077d5652d0ae 100644 --- a/app/Jobs/Bank/MatchBankTransactions.php +++ b/app/Jobs/Bank/MatchBankTransactions.php @@ -149,7 +149,7 @@ class MatchBankTransactions implements ShouldQueue } private function matchInvoicePayment($input) :self - { + { nlog($input); $this->bt = BankTransaction::find($input['id']); $_invoices = Invoice::withTrashed()->find($this->getInvoices($input['invoice_ids'])); @@ -166,7 +166,7 @@ class MatchBankTransactions implements ShouldQueue } private function matchExpense($input) :self - { + { nlog($input); //if there is a category id, pull it from Yodlee and insert - or just reuse!! $this->bt = BankTransaction::find($input['id']);