Skip to content
This repository has been archived by the owner on Feb 16, 2022. It is now read-only.

Commit

Permalink
Merge pull request #65 from heidelpay/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
sixer1182 authored Jun 7, 2018
2 parents 7c3fc8c + 4060484 commit 2b2a13b
Show file tree
Hide file tree
Showing 13 changed files with 18 additions and 13 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@

This project does not follow a versioning standard. Versions are crafted after the dates; for example, the version 17.7.25 was released on July, 25th in 2017

## 18.6.7

### Fixed
- A bug which resulted in a problem in developer mode forcing the shop-owner to perform di:compile on install.

## 18.4.23

### Fixed
Expand Down
4 changes: 2 additions & 2 deletions PaymentMethods/HeidelpayAbstractPaymentMethod.php
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,6 @@ class HeidelpayAbstractPaymentMethod extends \Magento\Payment\Model\Method\Abstr
* @param \Magento\Framework\Locale\ResolverInterface $localeResolver
* @param \Magento\Framework\App\ProductMetadataInterface $productMetadata
* @param \Magento\Framework\Module\ResourceInterface $moduleResource
* @param HgwBasePaymentConfigInterface $paymentConfig
* @param \Heidelpay\Gateway\Helper\Payment $paymentHelper
* @param \Heidelpay\Gateway\Helper\BasketHelper $basketHelper
* @param \Magento\Sales\Helper\Data $salesHelper
Expand All @@ -199,6 +198,7 @@ class HeidelpayAbstractPaymentMethod extends \Magento\Payment\Model\Method\Abstr
* @param HeidelpayTransactionCollectionFactory $transactionCollectionFactory
* @param \Magento\Framework\Model\ResourceModel\AbstractResource $resource
* @param \Magento\Framework\Data\Collection\AbstractDb $resourceCollection
* @param HgwBasePaymentConfigInterface $paymentConfig
* @param array $data
*/
public function __construct(
Expand All @@ -215,7 +215,6 @@ public function __construct(
\Magento\Framework\Locale\ResolverInterface $localeResolver,
\Magento\Framework\App\ProductMetadataInterface $productMetadata,
\Magento\Framework\Module\ResourceInterface $moduleResource,
$paymentConfig /* do not add Type or this wont work */,
\Heidelpay\Gateway\Helper\Payment $paymentHelper,
\Heidelpay\Gateway\Helper\BasketHelper $basketHelper,
\Magento\Sales\Helper\Data $salesHelper,
Expand All @@ -224,6 +223,7 @@ public function __construct(
HeidelpayTransactionCollectionFactory $transactionCollectionFactory,
\Magento\Framework\Model\ResourceModel\AbstractResource $resource = null,
\Magento\Framework\Data\Collection\AbstractDb $resourceCollection = null,
$paymentConfig = null /* do not add Type or this wont work */,
array $data = []
) {
parent::__construct(
Expand Down
2 changes: 1 addition & 1 deletion PaymentMethods/HeidelpayCreditCardPaymentMethod.php
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,6 @@ public function __construct(
$localeResolver,
$productMetadata,
$moduleResource,
$paymentConfig,
$paymentHelper,
$basketHelper,
$salesHelper,
Expand All @@ -145,6 +144,7 @@ public function __construct(
$transactionCollectionFactory,
$resource,
$resourceCollection,
$paymentConfig,
$data
);

Expand Down
2 changes: 1 addition & 1 deletion PaymentMethods/HeidelpayDebitCardPaymentMethod.php
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,6 @@ public function __construct(
$localeResolver,
$productMetadata,
$moduleResource,
$paymentConfig,
$paymentHelper,
$basketHelper,
$salesHelper,
Expand All @@ -145,6 +144,7 @@ public function __construct(
$transactionCollectionFactory,
$resource,
$resourceCollection,
$paymentConfig,
$data
);

Expand Down
2 changes: 1 addition & 1 deletion PaymentMethods/HeidelpayDirectDebitPaymentMethod.php
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,6 @@ public function __construct(
$localeResolver,
$productMetadata,
$moduleResource,
$paymentConfig,
$paymentHelper,
$basketHelper,
$salesHelper,
Expand All @@ -127,6 +126,7 @@ public function __construct(
$transactionCollectionFactory,
$resource,
$resourceCollection,
$paymentConfig,
$data
);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,6 @@ public function __construct(
$localeResolver,
$productMetadata,
$moduleResource,
$paymentConfig,
$paymentHelper,
$basketHelper,
$salesHelper,
Expand All @@ -127,6 +126,7 @@ public function __construct(
$transactionCollectionFactory,
$resource,
$resourceCollection,
$paymentConfig,
$data
);

Expand Down
2 changes: 1 addition & 1 deletion PaymentMethods/HeidelpayGiropayPaymentMethod.php
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,6 @@ public function __construct(
$localeResolver,
$productMetadata,
$moduleResource,
$paymentConfig,
$paymentHelper,
$basketHelper,
$salesHelper,
Expand All @@ -124,6 +123,7 @@ public function __construct(
$transactionCollectionFactory,
$resource,
$resourceCollection,
$paymentConfig,
$data
);

Expand Down
2 changes: 1 addition & 1 deletion PaymentMethods/HeidelpayInvoicePaymentMethod.php
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,6 @@ public function __construct(
$localeResolver,
$productMetadata,
$moduleResource,
$paymentConfig,
$paymentHelper,
$basketHelper,
$salesHelper,
Expand All @@ -140,6 +139,7 @@ public function __construct(
$transactionCollectionFactory,
$resource,
$resourceCollection,
$paymentConfig,
$data
);

Expand Down
2 changes: 1 addition & 1 deletion PaymentMethods/HeidelpayInvoiceSecuredPaymentMethod.php
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,6 @@ public function __construct(
$localeResolver,
$productMetadata,
$moduleResource,
$paymentConfig,
$paymentHelper,
$basketHelper,
$salesHelper,
Expand All @@ -140,6 +139,7 @@ public function __construct(
$transactionCollectionFactory,
$resource,
$resourceCollection,
$paymentConfig,
$data
);

Expand Down
2 changes: 1 addition & 1 deletion PaymentMethods/HeidelpayPayPalPaymentMethod.php
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,6 @@ public function __construct(
$localeResolver,
$productMetadata,
$moduleResource,
$paymentConfig,
$paymentHelper,
$basketHelper,
$salesHelper,
Expand All @@ -145,6 +144,7 @@ public function __construct(
$transactionCollectionFactory,
$resource,
$resourceCollection,
$paymentConfig,
$data
);

Expand Down
2 changes: 1 addition & 1 deletion PaymentMethods/HeidelpayPrepaymentPaymentMethod.php
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,6 @@ public function __construct(
$localeResolver,
$productMetadata,
$moduleResource,
$paymentConfig,
$paymentHelper,
$basketHelper,
$salesHelper,
Expand All @@ -140,6 +139,7 @@ public function __construct(
$transactionCollectionFactory,
$resource,
$resourceCollection,
$paymentConfig,
$data
);

Expand Down
2 changes: 1 addition & 1 deletion PaymentMethods/HeidelpaySofortPaymentMethod.php
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,6 @@ public function __construct(
$localeResolver,
$productMetadata,
$moduleResource,
$paymentConfig,
$paymentHelper,
$basketHelper,
$salesHelper,
Expand All @@ -134,6 +133,7 @@ public function __construct(
$transactionCollectionFactory,
$resource,
$resourceCollection,
$paymentConfig,
$data
);

Expand Down
2 changes: 1 addition & 1 deletion etc/module.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../../../../lib/internal/Magento/Framework/Module/etc/module.xsd">
<module name="Heidelpay_Gateway" schema_version="18.4.23" setup_version="18.4.23">
<module name="Heidelpay_Gateway" schema_version="18.6.7" setup_version="18.6.7">
<sequence>
<module name="Magento_Sales" />
<module name="Magento_Payment" />
Expand Down

0 comments on commit 2b2a13b

Please sign in to comment.