Add GoCardless to Gateway.php

This commit is contained in:
Benjamin Beganović 2021-09-28 18:24:35 +02:00
parent d814216121
commit 9acf7b8b3b

View File

@ -131,6 +131,10 @@ class Gateway extends StaticModel
GatewayType::CREDIT_CARD => ['refund' => false, 'token_billing' => true], //Square
];
break;
case 52:
return [
GatewayType::BANK_TRANSFER => ['refund' => true, 'token_billing' => true] // GoCardless
];
break;
default:
return [];