From 3215570964bb1f0ee2e2b5870dfa7225bead1963 Mon Sep 17 00:00:00 2001 From: woutse Date: Fri, 16 Jun 2023 16:35:07 +0200 Subject: [PATCH] Removed double use statements --- Controller/Checkout/Redirect.php | 4 +-- Model/Config.php | 2 -- composer.json | 60 +++++++++++++++++++++----------- 3 files changed, 40 insertions(+), 26 deletions(-) diff --git a/Controller/Checkout/Redirect.php b/Controller/Checkout/Redirect.php index 47b10583..5f113506 100644 --- a/Controller/Checkout/Redirect.php +++ b/Controller/Checkout/Redirect.php @@ -10,9 +10,7 @@ use Paynl\Payment\Helper\PayHelper; /** - * Redirects the user. - * - * @author Andy Pieters + * Redirects the user after payment */ class Redirect extends PayAction { diff --git a/Model/Config.php b/Model/Config.php index c7240bb6..afcf6360 100755 --- a/Model/Config.php +++ b/Model/Config.php @@ -8,8 +8,6 @@ /** * Get / Set configuration for the PAY api and Magento settings. - * - * @author Andy Pieters */ class Config { diff --git a/composer.json b/composer.json index 76916528..f6691920 100644 --- a/composer.json +++ b/composer.json @@ -1,24 +1,42 @@ { - "name": "paynl/magento2-plugin", - "description": "PAY. Payment methods for Magento2", - "type": "magento2-module", - "version": "3.6.0", - "require": { - "magento/module-sales": "^102.0.0 || ^103.0.0", - "magento/module-payment": "^100.3.0", - "magento/module-quote": "^101.1.0", - "paynl/sdk": "^1.5.19" - }, - "authors": [ - { - "name": "Andy Pieters", - "email": "andy@pay.nl" + "name": "paynl/magento2-plugin", + "description": "PAY. Payment methods for Magento2", + "type": "magento2-module", + "version": "3.6.1", + "require": { + "magento/module-sales": "^102.0.0 || ^103.0.0", + "magento/module-payment": "^100.3.0", + "magento/module-quote": "^101.1.0", + "paynl/sdk": "^1.5.19" + }, + "authors": [ + { + "name": "Andy Pieters", + "email": "andy@pay.nl" + }, + { + "name": "Kevin Verschoor", + "email": "k.verschoor@pay.nl" + }, + { + "name": "Anne van Velden", + "email": "anne@pay.nl" + }, + { + "name": "Wouter Jonker", + "email": "wouter@pay.nl" + } + ], + "support": { + "email": "support@pay.nl", + "docs": "https://docs.pay.nl/plugins#magento-2" + }, + "autoload": { + "files": [ + "registration.php" + ], + "psr-4": { + "Paynl\\Payment\\": "" + } } - ], - "autoload": { - "files": [ "registration.php" ], - "psr-4": { - "Paynl\\Payment\\": "" - } - } }