PluginProbe
FluentCart A New Era of eCommerce – Faster, Lighter, and Simpler / 1.6.5
FluentCart A New Era of eCommerce – Faster, Lighter, and Simpler v1.6.5
1.6.6 1.6.5 1.6.4 1.6.3 1.6.2 1.6.1 1.6.0 1.5.4 1.5.5 1.5.3 1.5.2 1.5.1 1.5.0 1.4.2 1.4.1 1.4.0 1.3.28 1.3.27 1.3.26 1.3.25 1.3.23 1.3.22 1.3.21 1.3.20 1.3.19 All 49 releases
← All changes | app/Hooks/Handlers/GlobalPaymentHandler.php +0 -2 1.3.21 → 1.6.5 View file →
@@ -6,9 +6,8 @@
6 6 use FluentCart\App\Modules\PaymentMethods\AirwallexGateway\Airwallex;
7 7 use FluentCart\App\Modules\PaymentMethods\Cod\Cod;
8 8 use FluentCart\App\Modules\PaymentMethods\Core\GatewayManager;
9 9 use FluentCart\App\Modules\PaymentMethods\PayPalGateway\PayPal;
10 -use FluentCart\App\Modules\PaymentMethods\SquareGateway\Square;
11 10 use FluentCart\App\Modules\PaymentMethods\StripeGateway\Stripe;
12 11 use FluentCart\App\Modules\PaymentMethods\StripeGateway\Connect\ConnectConfig;
13 12 use FluentCart\Framework\Support\Arr;
14 13 use FluentCart\Api\PaymentMethods;
@@ -27,9 +26,8 @@
27 26 $gateway = GatewayManager::getInstance();
28 27 $gateway->register('stripe', new Stripe());
29 28 $gateway->register('paypal', new PayPal());
30 29 $gateway->register('offline_payment', new Cod());
31 - $gateway->register('square', new Square());
32 30 $gateway->register('airwallex', new Airwallex());
33 31
34 32 $this->verifyStripeConnect();
35 33