update gateway types

This commit is contained in:
Kendall Arneaud 2024-06-17 00:59:40 +00:00
parent b31d65440b
commit 94a4605e38
2 changed files with 3 additions and 5 deletions

View File

@ -3,6 +3,4 @@
include app_path("PaymentDrivers/Rotessa/vendor/autoload.php"); include app_path("PaymentDrivers/Rotessa/vendor/autoload.php");
class_alias("App\\PaymentDrivers\\Rotessa\\PaymentMethod","App\\PaymentDrivers\\Rotessa\\BankTransfer"); class_alias("App\\PaymentDrivers\\Rotessa\\PaymentMethod","App\\PaymentDrivers\\Rotessa\\BankTransfer");
class_alias("App\\PaymentDrivers\\Rotessa\\PaymentMethod","App\\PaymentDrivers\\Rotessa\\DirectDebit");
class_alias("App\\PaymentDrivers\\Rotessa\\PaymentMethod","App\\PaymentDrivers\\Rotessa\\Acss"); class_alias("App\\PaymentDrivers\\Rotessa\\PaymentMethod","App\\PaymentDrivers\\Rotessa\\Acss");
class_alias("App\\PaymentDrivers\\Rotessa\\PaymentMethod","App\\PaymentDrivers\\Rotessa\\Bacs");

View File

@ -9,8 +9,8 @@ return [
'token_billing' => true, 'token_billing' => true,
'webhooks' => [], 'webhooks' => [],
], ],
GatewayType::BACS => ['refund' => false, 'token_billing' => true, 'webhooks' => []], //GatewayType::BACS => ['refund' => false, 'token_billing' => true, 'webhooks' => []],
GatewayType::DIRECT_DEBIT => ['refund' => false, 'token_billing' => true, 'webhooks' => []], //GatewayType::DIRECT_DEBIT => ['refund' => false, 'token_billing' => true, 'webhooks' => []],
GatewayType::ACSS => ['refund' => false, 'token_billing' => true, 'webhooks' => []] GatewayType::ACSS => ['refund' => false, 'token_billing' => true, 'webhooks' => []]
] ]
]; ];