Skip to content

Commit

Permalink
Fix set currency from ISO string
Browse files Browse the repository at this point in the history
  • Loading branch information
Novikov Andrey committed Apr 16, 2018
1 parent c24e6bc commit 57acdf2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Message/AuthorizeRequest.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ public function getData()
$data = [
'orderNumber' => $this->getOrderNumber(),
'amount' => $this->getAmount(),
'returnUrl' => $this->getReturnUrl(),
'currency' => $this->getCurrencyNumeric()
'returnUrl' => $this->getReturnUrl()
];

$additionalParams = [
'currency',
'failUrl',
'description',
'language',
Expand Down

0 comments on commit 57acdf2

Please sign in to comment.