Skip to content

Commit

Permalink
Fixed syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
SilverFire authored Apr 30, 2019
1 parent 0e7c6aa commit 999fe40
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Message/PurchaseRequest.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,12 @@ public function generateSignature()
$this->getInvId()
];
if ($this->getCurrency()) {
$params[] = $this->getCurrency());
$params[] = $this->getCurrency();
}
if ($this->getReceipt()) {
$params[] = $this->getReceipt());
$params[] = $this->getReceipt();
}
$params[] = $this->getSecretKey());
$params[] = $this->getSecretKey();

foreach ($this->getCustomFields() as $field => $value) {
$params[] = "$field=$value";
Expand Down

0 comments on commit 999fe40

Please sign in to comment.