Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature: Added methods #11

Merged
merged 1 commit into from
Jul 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions Test/Integration/Configuration/PaymentXmlTest.php
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
<?php
/*
*
* * Copyright Magmodules.eu. All rights reserved.
* * See COPYING.txt for license details.
*
* Copyright Magmodules.eu. All rights reserved.
* See COPYING.txt for license details.
*/

declare(strict_types=1);
Expand Down Expand Up @@ -35,6 +33,7 @@ function (string $code) {
'mollie_methods_klarnapaynow',
'mollie_methods_klarnasliceit',
'mollie_methods_pointofsale',
'mollie_methods_riverty',
]
);
}
Expand Down
1 change: 0 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
"creditcard",
"directdebit",
"eps",
"giropay",
"gift cards",
"ideal",
"kbc",
Expand Down
3 changes: 2 additions & 1 deletion etc/frontend/di.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
<item name="mollie_methods_directdebit" xsi:type="string">Mollie\Multishipping\PlaceOrder</item>
<item name="mollie_methods_eps" xsi:type="string">Mollie\Multishipping\PlaceOrder</item>
<item name="mollie_methods_giftcard" xsi:type="string">Mollie\Multishipping\PlaceOrder</item>
<item name="mollie_methods_giropay" xsi:type="string">Mollie\Multishipping\PlaceOrder</item>
<item name="mollie_methods_ideal" xsi:type="string">Mollie\Multishipping\PlaceOrder</item>
<item name="mollie_methods_in3" xsi:type="string">Mollie\Multishipping\PlaceOrder</item>
<item name="mollie_methods_kbc" xsi:type="string">Mollie\Multishipping\PlaceOrder</item>
Expand All @@ -33,7 +32,9 @@
<item name="mollie_methods_paysafecard" xsi:type="string">Mollie\Multishipping\PlaceOrder</item>
<item name="mollie_methods_pointofsale" xsi:type="string">Mollie\Multishipping\PlaceOrder</item>
<item name="mollie_methods_przelewy24" xsi:type="string">Mollie\Multishipping\PlaceOrder</item>
<item name="mollie_methods_riverty" xsi:type="string">Mollie\Multishipping\PlaceOrder</item>
<item name="mollie_methods_sofort" xsi:type="string">Mollie\Multishipping\PlaceOrder</item>
<item name="mollie_methods_trustly" xsi:type="string">Mollie\Multishipping\PlaceOrder</item>
<item name="mollie_methods_twint" xsi:type="string">Mollie\Multishipping\PlaceOrder</item>
<item name="mollie_methods_voucher" xsi:type="string">Mollie\Multishipping\PlaceOrder</item>
</argument>
Expand Down
9 changes: 6 additions & 3 deletions etc/payment.xml
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,6 @@
<method name="mollie_methods_giftcard">
<allow_multiple_address>1</allow_multiple_address>
</method>
<method name="mollie_methods_giropay">
<allow_multiple_address>1</allow_multiple_address>
</method>
<method name="mollie_methods_ideal">
<allow_multiple_address>1</allow_multiple_address>
</method>
Expand All @@ -62,9 +59,15 @@
<method name="mollie_methods_przelewy24">
<allow_multiple_address>1</allow_multiple_address>
</method>
<method name="mollie_methods_riverty">
<allow_multiple_address>0</allow_multiple_address>
</method>
<method name="mollie_methods_sofort">
<allow_multiple_address>1</allow_multiple_address>
</method>
<method name="mollie_methods_trustly">
<allow_multiple_address>1</allow_multiple_address>
</method>
<method name="mollie_methods_twint">
<allow_multiple_address>1</allow_multiple_address>
</method>
Expand Down