From af8ea65b33b7bd64098c0276cb43d9711ff601f8 Mon Sep 17 00:00:00 2001 From: David Bomba Date: Mon, 6 Feb 2023 09:06:42 +1100 Subject: [PATCH] Stub required fields for custom payment drivers --- app/PaymentDrivers/CustomPaymentDriver.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/app/PaymentDrivers/CustomPaymentDriver.php b/app/PaymentDrivers/CustomPaymentDriver.php index b9227c816fc3..6a95a6f05643 100644 --- a/app/PaymentDrivers/CustomPaymentDriver.php +++ b/app/PaymentDrivers/CustomPaymentDriver.php @@ -106,4 +106,9 @@ class CustomPaymentDriver extends BaseDriver { // Driver doesn't support this feature. } + + public function getClientRequiredFields(): array + { + return []; + } }