From 92294d8379e8954f9e9090f7d169c774b0388de3 Mon Sep 17 00:00:00 2001 From: David Bomba Date: Thu, 9 Mar 2023 09:00:58 +1100 Subject: [PATCH] Minor fixes for variable initialization --- app/PaymentDrivers/Stripe/ACH.php | 1 + 1 file changed, 1 insertion(+) diff --git a/app/PaymentDrivers/Stripe/ACH.php b/app/PaymentDrivers/Stripe/ACH.php index 34825fd35d35..e8d31b2f411e 100644 --- a/app/PaymentDrivers/Stripe/ACH.php +++ b/app/PaymentDrivers/Stripe/ACH.php @@ -262,6 +262,7 @@ class ACH { $this->stripe->init(); + $response = false; try { $data = [ 'amount' => $this->stripe->convertToStripeAmount($amount, $this->stripe->client->currency()->precision, $this->stripe->client->currency()),