| @@ -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 | |