mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-06-23 20:00:33 -04:00
add appropriate class
This commit is contained in:
parent
a428196e92
commit
b31d65440b
@ -20,6 +20,9 @@ use App\Models\GatewayType;
|
|||||||
use Omnipay\Rotessa\Gateway;
|
use Omnipay\Rotessa\Gateway;
|
||||||
use App\Utils\Traits\MakesHash;
|
use App\Utils\Traits\MakesHash;
|
||||||
use App\PaymentDrivers\BaseDriver;
|
use App\PaymentDrivers\BaseDriver;
|
||||||
|
use App\PaymentDrivers\Rotessa\Bacs;
|
||||||
|
use App\PaymentDrivers\Rotessa\Acss;
|
||||||
|
use App\PaymentDrivers\Rotessa\DirectDebit;
|
||||||
use App\PaymentDrivers\Rotessa\BankTransfer;
|
use App\PaymentDrivers\Rotessa\BankTransfer;
|
||||||
|
|
||||||
class RotessaPaymentDriver extends BaseDriver
|
class RotessaPaymentDriver extends BaseDriver
|
||||||
@ -38,9 +41,9 @@ class RotessaPaymentDriver extends BaseDriver
|
|||||||
|
|
||||||
public static $methods = [
|
public static $methods = [
|
||||||
GatewayType::BANK_TRANSFER => BankTransfer::class,
|
GatewayType::BANK_TRANSFER => BankTransfer::class,
|
||||||
GatewayType::BACS => BankTransfer::class,
|
GatewayType::BACS => Bacs::class,
|
||||||
GatewayType::ACSS => BankTransfer::class,
|
GatewayType::ACSS => Acss::class,
|
||||||
GatewayType::DIRECT_DEBIT => BankTransfer::class
|
GatewayType::DIRECT_DEBIT => DirectDebit::class
|
||||||
];
|
];
|
||||||
|
|
||||||
public function init(): self
|
public function init(): self
|
||||||
|
Loading…
x
Reference in New Issue
Block a user