From f179b615c1380bb885f4c576726efc83ee2eb737 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20Beganovi=C4=87?= Date: Wed, 29 Sep 2021 14:15:21 +0200 Subject: [PATCH] Scaffold ACH class --- app/PaymentDrivers/GoCardless/ACH.php | 36 +++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 app/PaymentDrivers/GoCardless/ACH.php diff --git a/app/PaymentDrivers/GoCardless/ACH.php b/app/PaymentDrivers/GoCardless/ACH.php new file mode 100644 index 000000000000..7e4a7a80f985 --- /dev/null +++ b/app/PaymentDrivers/GoCardless/ACH.php @@ -0,0 +1,36 @@ +go_cardless = $go_cardless; + } + + public function authorizeView(array $data) { } + + public function authorizeResponse(Request $request) { } + + public function paymentView(array $data) { } + + public function paymentResponse(PaymentResponseRequest $request) { } +}