Skip to content

Commit

Permalink
typo in method name from Nvp class
Browse files Browse the repository at this point in the history
  • Loading branch information
Marcel Hauri authored and osrecio committed May 29, 2018
1 parent d849f99 commit 6a0f4ca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/code/Magento/Paypal/Model/Api/Nvp.php
Original file line number Diff line number Diff line change
Expand Up @@ -844,7 +844,7 @@ public function callGetExpressCheckoutDetails()
$request = $this->_exportToRequest($this->_getExpressCheckoutDetailsRequest);
$response = $this->call(self::GET_EXPRESS_CHECKOUT_DETAILS, $request);
$this->_importFromResponse($this->_paymentInformationResponse, $response);
$this->_exportAddressses($response);
$this->_exportAddresses($response);
}

/**
Expand Down Expand Up @@ -1462,7 +1462,7 @@ protected function _exportLineItems(array &$request, $i = 0)
* @param array $data
* @return void
*/
protected function _exportAddressses($data)
protected function _exportAddresses($data)
{
$address = new \Magento\Framework\DataObject();
\Magento\Framework\DataObject\Mapper::accumulateByMap($data, $address, $this->_billingAddressMap);
Expand Down

0 comments on commit 6a0f4ca

Please sign in to comment.