We will work on Apr 26th (Saturday) and will be off from Apr 30th (Wednesday) until May 2nd (Friday) for public holiday in our country

Commit 0c830d72 authored by attilak's avatar attilak

Fix mishandled conflicts

parent ed625243
...@@ -63,7 +63,7 @@ class RecurringDataBuilder implements BuilderInterface ...@@ -63,7 +63,7 @@ class RecurringDataBuilder implements BuilderInterface
$payment = $paymentDataObject->getPayment(); $payment = $paymentDataObject->getPayment();
$storeId = $payment->getOrder()->getStoreId(); $storeId = $payment->getOrder()->getStoreId();
$areaCode = $this->appState->getAreaCode(); $areaCode = $this->appState->getAreaCode();
$request['body'] = $this->adyenRequestsHelper->buildRecurringData([], $areaCode, $storeId); $request['body'] = $this->adyenRequestsHelper->buildRecurringData($areaCode, $storeId, []);
return $request; return $request;
} }
} }
...@@ -26,7 +26,7 @@ namespace Adyen\Payment\Observer; ...@@ -26,7 +26,7 @@ namespace Adyen\Payment\Observer;
use Magento\Framework\Event\Observer; use Magento\Framework\Event\Observer;
use Magento\Quote\Api\Data\PaymentInterface; use Magento\Quote\Api\Data\PaymentInterface;
class AdyenCcDataAssignObserver extends AbstractDataAssignObserver class AdyenCcDataAssignObserver extends AdyenAbstractDataAssignObserver
{ {
/** /**
* Approved root level keys from additional data array * Approved root level keys from additional data array
......
...@@ -26,7 +26,7 @@ namespace Adyen\Payment\Observer; ...@@ -26,7 +26,7 @@ namespace Adyen\Payment\Observer;
use Magento\Framework\Event\Observer; use Magento\Framework\Event\Observer;
use Magento\Quote\Api\Data\PaymentInterface; use Magento\Quote\Api\Data\PaymentInterface;
class AdyenHppDataAssignObserver extends AbstractDataAssignObserver class AdyenHppDataAssignObserver extends AdyenAbstractDataAssignObserver
{ {
/** /**
* Approved root level keys from additional data array * Approved root level keys from additional data array
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment