Skip to content

Commit

Permalink
Removed double use statements
Browse files Browse the repository at this point in the history
  • Loading branch information
woutse committed Jun 16, 2023
1 parent c9ecd80 commit 3215570
Show file tree
Hide file tree
Showing 3 changed files with 40 additions and 26 deletions.
4 changes: 1 addition & 3 deletions Controller/Checkout/Redirect.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,7 @@
use Paynl\Payment\Helper\PayHelper;

/**
* Redirects the user.
*
* @author Andy Pieters <[email protected]>
* Redirects the user after payment
*/
class Redirect extends PayAction
{
Expand Down
2 changes: 0 additions & 2 deletions Model/Config.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,6 @@

/**
* Get / Set configuration for the PAY api and Magento settings.
*
* @author Andy Pieters <[email protected]>
*/
class Config
{
Expand Down
60 changes: 39 additions & 21 deletions composer.json
Original file line number Diff line number Diff line change
@@ -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": "[email protected]"
"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": "[email protected]"
},
{
"name": "Kevin Verschoor",
"email": "[email protected]"
},
{
"name": "Anne van Velden",
"email": "[email protected]"
},
{
"name": "Wouter Jonker",
"email": "[email protected]"
}
],
"support": {
"email": "[email protected]",
"docs": "https://docs.pay.nl/plugins#magento-2"
},
"autoload": {
"files": [
"registration.php"
],
"psr-4": {
"Paynl\\Payment\\": ""
}
}
],
"autoload": {
"files": [ "registration.php" ],
"psr-4": {
"Paynl\\Payment\\": ""
}
}
}

0 comments on commit 3215570

Please sign in to comment.