Skip to content

Commit

Permalink
Merge pull request #10 from nielstholenaar/master
Browse files Browse the repository at this point in the history
Fix for wrong method signature
  • Loading branch information
delatbabel committed Mar 10, 2016
2 parents 342d0a3 + 7fdcc23 commit 779784c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Message/RestFetchTransactionResponse.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,11 @@ public function isUncleared()
}

/**
* Is the payment canceled?
* Is the payment cancelled?
*
* @return boolean
*/
public function isCanceled()
public function isCancelled()
{
return $this->getPaymentStatus() == 'canceled';
}
Expand Down

0 comments on commit 779784c

Please sign in to comment.