diff --git a/app/PaymentDrivers/GoCardlessPaymentDriver.php b/app/PaymentDrivers/GoCardlessPaymentDriver.php index e03204c650..85ba330df3 100644 --- a/app/PaymentDrivers/GoCardlessPaymentDriver.php +++ b/app/PaymentDrivers/GoCardlessPaymentDriver.php @@ -18,6 +18,7 @@ use App\Models\PaymentHash; use App\Models\SystemLog; use App\Utils\Traits\MakesHash; + class GoCardlessPaymentDriver extends BaseDriver { use MakesHash; @@ -47,6 +48,13 @@ class GoCardlessPaymentDriver extends BaseDriver return $this; } + public function gatewayTypes(): array + { + return [ + GatewayType::BANK_TRANSFER, + ]; + } + public function authorizeView(array $data) { return $this->payment_method->authorizeView($data);