From cfa5c991034bdf806c2152a3093b9db1578de45a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20H=C3=BCsken?= Date: Thu, 30 Jan 2025 15:38:18 +0100 Subject: [PATCH] feature flag not needed --- src/Gateway/GatewayModule.php | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/Gateway/GatewayModule.php b/src/Gateway/GatewayModule.php index 18e88d24..a7a06172 100644 --- a/src/Gateway/GatewayModule.php +++ b/src/Gateway/GatewayModule.php @@ -130,12 +130,6 @@ public function services(): array return $method['id'] !== Constants::SWISH; }); } - $swishFlag = (bool) apply_filters('inpsyde.feature-flags.mollie-woocommerce.multibanco_enabled', false); - if (!$swishFlag) { - $availablePaymentMethods = array_filter($availablePaymentMethods, static function ($method) { - return $method['id'] !== 'multibanco'; - }); - } return $availablePaymentMethods; }, 'gateway.isSDDGatewayEnabled' => static function (ContainerInterface $container): bool {