From 4720df823633f6b99d0e5994098baa4982809772 Mon Sep 17 00:00:00 2001 From: Lars Kusch Date: Mon, 16 Jan 2023 16:04:43 +0100 Subject: [PATCH] More fixes --- app/PaymentDrivers/Stripe/BACS.php | 4 ---- 1 file changed, 4 deletions(-) diff --git a/app/PaymentDrivers/Stripe/BACS.php b/app/PaymentDrivers/Stripe/BACS.php index aa3b4be79031..85dd8e86c4f2 100644 --- a/app/PaymentDrivers/Stripe/BACS.php +++ b/app/PaymentDrivers/Stripe/BACS.php @@ -125,12 +125,8 @@ class BACS 'amount' => $this->stripe->convertFromStripeAmount($payment_id->amount, $this->stripe->client->currency()->precision, $this->stripe->client->currency()), 'transaction_reference' => $payment_id['id'], 'gateway_type_id' => GatewayType::BACS, - 'invoices' => collect($this->stripe->payment_hash->invoices()), ]; - $this->stripe->payment_hash->data = array_merge((array) $payment_id, $data); - $this->stripe->payment_hash->save(); - $payment = $this->stripe->createPayment($data, Payment::STATUS_PENDING); SystemLogger::dispatch(