Skip to content

Commit b2318bb

Browse files
author
Marcel Hauri
committed
[fix] typo in method name from Nvp class
1 parent 44502ff commit b2318bb

File tree

1 file changed

+2
-2
lines changed
  • app/code/Magento/Paypal/Model/Api

1 file changed

+2
-2
lines changed

app/code/Magento/Paypal/Model/Api/Nvp.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -846,7 +846,7 @@ public function callGetExpressCheckoutDetails()
846846
$request = $this->_exportToRequest($this->_getExpressCheckoutDetailsRequest);
847847
$response = $this->call(self::GET_EXPRESS_CHECKOUT_DETAILS, $request);
848848
$this->_importFromResponse($this->_paymentInformationResponse, $response);
849-
$this->_exportAddressses($response);
849+
$this->_exportAddresses($response);
850850
}
851851

852852
/**
@@ -1464,7 +1464,7 @@ protected function _exportLineItems(array &$request, $i = 0)
14641464
* @param array $data
14651465
* @return void
14661466
*/
1467-
protected function _exportAddressses($data)
1467+
protected function _exportAddresses($data)
14681468
{
14691469
$address = new \Magento\Framework\DataObject();
14701470
\Magento\Framework\DataObject\Mapper::accumulateByMap($data, $address, $this->_billingAddressMap);

0 commit comments

Comments
 (0)