Skip to content

Commit

Permalink
Typo fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
overtrue committed Jan 14, 2016
1 parent a30a031 commit a4c1f15
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Payment/API.php
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ public function queryRefundByRefundNo($refundNo)
*/
public function queryRefundByTranscationId($transcationId)
{
return $this->queryRefund($refundNo, self::TRANSCATION_ID);
return $this->queryRefund($transcationId, self::TRANSCATION_ID);
}

/**
Expand All @@ -267,7 +267,7 @@ public function queryRefundByTranscationId($transcationId)
*/
public function queryRefundByRefundId($refundId)
{
return $this->queryRefund($refundNo, self::REFUND_ID);
return $this->queryRefund($refundId, self::REFUND_ID);
}

/**
Expand Down

0 comments on commit a4c1f15

Please sign in to comment.