Skip to content

Commit

Permalink
OldCompletePurchaseResponse::getTransactionId() returns ik_payment_id…
Browse files Browse the repository at this point in the history
… instead of ik_trans_id

getTransactionReference() returns ik_trans_id instead of ik_payment_id
  • Loading branch information
SilverFire committed Mar 10, 2016
1 parent 6731ed2 commit de874bd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Message/OldCompletePurchaseResponse.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,15 +34,15 @@ public function getCheckoutId()
*/
public function getTransactionId()
{
return $this->data['ik_trans_id'];
return $this->data['ik_payment_id'];
}

/**
* {@inheritdoc}
*/
public function getTransactionReference()
{
return $this->data['ik_payment_id'];
return $this->data['ik_trans_id'];
}

/**
Expand Down

0 comments on commit de874bd

Please sign in to comment.