mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-07-09 03:14:30 -04:00
Add InstantBankPay to GoCardlessPaymentDriver
This commit is contained in:
parent
d45c5a1e41
commit
085bcbe3c3
@ -40,6 +40,7 @@ class GoCardlessPaymentDriver extends BaseDriver
|
|||||||
GatewayType::BANK_TRANSFER => \App\PaymentDrivers\GoCardless\ACH::class,
|
GatewayType::BANK_TRANSFER => \App\PaymentDrivers\GoCardless\ACH::class,
|
||||||
GatewayType::DIRECT_DEBIT => \App\PaymentDrivers\GoCardless\DirectDebit::class,
|
GatewayType::DIRECT_DEBIT => \App\PaymentDrivers\GoCardless\DirectDebit::class,
|
||||||
GatewayType::SEPA => \App\PaymentDrivers\GoCardless\SEPA::class,
|
GatewayType::SEPA => \App\PaymentDrivers\GoCardless\SEPA::class,
|
||||||
|
GatewayType::INSTANT_BANK_PAY => \App\PaymentDrivers\GoCardless\InstantBankPay::class,
|
||||||
];
|
];
|
||||||
|
|
||||||
const SYSTEM_LOG_TYPE = SystemLog::TYPE_GOCARDLESS;
|
const SYSTEM_LOG_TYPE = SystemLog::TYPE_GOCARDLESS;
|
||||||
@ -77,6 +78,8 @@ class GoCardlessPaymentDriver extends BaseDriver
|
|||||||
$types[] = GatewayType::SEPA;
|
$types[] = GatewayType::SEPA;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$types[] = GatewayType::INSTANT_BANK_PAY;
|
||||||
|
|
||||||
return $types;
|
return $types;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user