PluginProbe
FluentCart A New Era of eCommerce – Faster, Lighter, and Simpler / 1.6.6
FluentCart A New Era of eCommerce – Faster, Lighter, and Simpler v1.6.6
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/AddonGatewaysHandler.php +6 -2 1.3.25 → 1.6.6 View file →
@@ -6,8 +6,10 @@
6 6 use FluentCart\App\Modules\PaymentMethods\PromoGateways\Addons\PaystackAddon;
7 7 use FluentCart\App\Modules\PaymentMethods\PromoGateways\Addons\RazorpayAddon;
8 8 use FluentCart\App\Modules\PaymentMethods\PromoGateways\Addons\MercadoPagoAddon;
9 9 use FluentCart\App\Modules\PaymentMethods\PromoGateways\Addons\FlutterwaveAddon;
10 +use FluentCart\App\Modules\PaymentMethods\PromoGateways\Addons\SquareAddon;
11 +use FluentCart\App\Modules\PaymentMethods\PromoGateways\Addons\SslcommerzAddon;
10 12
11 13 class AddonGatewaysHandler
12 14 {
13 15 /**
@@ -14,12 +16,14 @@
14 16 * Default addon gateways to register
15 17 * @var array
16 18 */
17 19 protected $defaultGateways = [
18 - 'paystack' => PaystackAddon::class,
19 - 'razorpay' => RazorpayAddon::class,
20 + 'paystack' => PaystackAddon::class,
21 + 'razorpay' => RazorpayAddon::class,
20 22 'mercado_pago' => MercadoPagoAddon::class,
21 23 'flutterwave' => FlutterwaveAddon::class,
24 + 'square' => SquareAddon::class,
25 + 'sslcommerz' => SslcommerzAddon::class,
22 26 ];
23 27
24 28 public function register()
25 29 {