diff --git a/composer.json b/composer.json index 7961759b6..8fd7990d7 100644 --- a/composer.json +++ b/composer.json @@ -1,7 +1,7 @@ { "name": "kiener/mollie-payments-plugin", "description": "Mollie Payments", - "version": "v4.4.0", + "version": "v4.4.1", "type": "shopware-platform-plugin", "license": "MIT", "authors": [ diff --git a/composer.lock b/composer.lock index 95e2afcd3..c42991d17 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "2e0da21417d929e2cea80cf7c7790334", + "content-hash": "e1eda73b34c0600f1aabc7e016fca71f", "packages": [], "packages-dev": [ { @@ -63,16 +63,16 @@ }, { "name": "aws/aws-sdk-php", - "version": "3.296.4", + "version": "3.296.5", "source": { "type": "git", "url": "https://github.com/aws/aws-sdk-php.git", - "reference": "2efd701a5e5f50560319ffe0669942dc8d3a4a54" + "reference": "23b009f305278e227bc5149bcb8fc9c1503fb130" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/2efd701a5e5f50560319ffe0669942dc8d3a4a54", - "reference": "2efd701a5e5f50560319ffe0669942dc8d3a4a54", + "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/23b009f305278e227bc5149bcb8fc9c1503fb130", + "reference": "23b009f305278e227bc5149bcb8fc9c1503fb130", "shasum": "" }, "require": { @@ -152,9 +152,9 @@ "support": { "forum": "https://forums.aws.amazon.com/forum.jspa?forumID=80", "issues": "https://github.com/aws/aws-sdk-php/issues", - "source": "https://github.com/aws/aws-sdk-php/tree/3.296.4" + "source": "https://github.com/aws/aws-sdk-php/tree/3.296.5" }, - "time": "2024-01-17T23:34:36+00:00" + "time": "2024-01-18T19:06:27+00:00" }, { "name": "boxblinkracer/phpunuhi", @@ -6318,16 +6318,16 @@ }, { "name": "phpunit/phpunit", - "version": "9.6.15", + "version": "9.6.16", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/phpunit.git", - "reference": "05017b80304e0eb3f31d90194a563fd53a6021f1" + "reference": "3767b2c56ce02d01e3491046f33466a1ae60a37f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/05017b80304e0eb3f31d90194a563fd53a6021f1", - "reference": "05017b80304e0eb3f31d90194a563fd53a6021f1", + "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/3767b2c56ce02d01e3491046f33466a1ae60a37f", + "reference": "3767b2c56ce02d01e3491046f33466a1ae60a37f", "shasum": "" }, "require": { @@ -6401,7 +6401,7 @@ "support": { "issues": "https://github.com/sebastianbergmann/phpunit/issues", "security": "https://github.com/sebastianbergmann/phpunit/security/policy", - "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.15" + "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.16" }, "funding": [ { @@ -6417,7 +6417,7 @@ "type": "tidelift" } ], - "time": "2023-12-01T16:55:19+00:00" + "time": "2024-01-19T07:03:14+00:00" }, { "name": "psr/cache", diff --git a/src/MolliePayments.php b/src/MolliePayments.php index 28292397b..7809a1a09 100644 --- a/src/MolliePayments.php +++ b/src/MolliePayments.php @@ -24,7 +24,7 @@ class MolliePayments extends Plugin { - const PLUGIN_VERSION = '4.4.0'; + const PLUGIN_VERSION = '4.4.1'; /** diff --git a/src/Service/PaymentMethodService.php b/src/Service/PaymentMethodService.php index eab96efd1..8a746a0f0 100644 --- a/src/Service/PaymentMethodService.php +++ b/src/Service/PaymentMethodService.php @@ -195,7 +195,7 @@ public function addPaymentMethods(array $paymentMethods, Context $context): void ]; } - if (mb_strlen($technicalName) > 0) { + if (mb_strlen($technicalName) === 0) { $technicalName = self::TECHNICAL_NAME_PREFIX . $paymentMethod['name']; }