mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-07-09 03:14:30 -04:00
Add BrowserPay to StripePaymentDriver
This commit is contained in:
parent
b8c8a486fd
commit
fb712b546c
@ -40,6 +40,7 @@ use App\PaymentDrivers\Stripe\EPS;
|
|||||||
use App\PaymentDrivers\Stripe\Bancontact;
|
use App\PaymentDrivers\Stripe\Bancontact;
|
||||||
use App\PaymentDrivers\Stripe\BECS;
|
use App\PaymentDrivers\Stripe\BECS;
|
||||||
use App\PaymentDrivers\Stripe\ACSS;
|
use App\PaymentDrivers\Stripe\ACSS;
|
||||||
|
use App\PaymentDrivers\Stripe\BrowserPay;
|
||||||
use App\PaymentDrivers\Stripe\UpdatePaymentMethods;
|
use App\PaymentDrivers\Stripe\UpdatePaymentMethods;
|
||||||
use App\PaymentDrivers\Stripe\Utilities;
|
use App\PaymentDrivers\Stripe\Utilities;
|
||||||
use App\Utils\Traits\MakesHash;
|
use App\Utils\Traits\MakesHash;
|
||||||
@ -82,7 +83,7 @@ class StripePaymentDriver extends BaseDriver
|
|||||||
GatewayType::BANK_TRANSFER => ACH::class,
|
GatewayType::BANK_TRANSFER => ACH::class,
|
||||||
GatewayType::ALIPAY => Alipay::class,
|
GatewayType::ALIPAY => Alipay::class,
|
||||||
GatewayType::SOFORT => SOFORT::class,
|
GatewayType::SOFORT => SOFORT::class,
|
||||||
GatewayType::APPLE_PAY => ApplePay::class,
|
GatewayType::APPLE_PAY => BrowserPay::class,
|
||||||
GatewayType::SEPA => SEPA::class,
|
GatewayType::SEPA => SEPA::class,
|
||||||
GatewayType::PRZELEWY24 => PRZELEWY24::class,
|
GatewayType::PRZELEWY24 => PRZELEWY24::class,
|
||||||
GatewayType::GIROPAY => GIROPAY::class,
|
GatewayType::GIROPAY => GIROPAY::class,
|
||||||
@ -139,7 +140,8 @@ class StripePaymentDriver extends BaseDriver
|
|||||||
{
|
{
|
||||||
$types = [
|
$types = [
|
||||||
// GatewayType::CRYPTO,
|
// GatewayType::CRYPTO,
|
||||||
GatewayType::CREDIT_CARD
|
GatewayType::CREDIT_CARD,
|
||||||
|
GatewayType::APPLE_PAY,
|
||||||
];
|
];
|
||||||
|
|
||||||
if ($this->client
|
if ($this->client
|
||||||
|
Loading…
x
Reference in New Issue
Block a user