Skip to content

Commit

Permalink
Update Transaction.php
Browse files Browse the repository at this point in the history
  • Loading branch information
andypieters committed Feb 19, 2016
1 parent 18ed377 commit 8d40259
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Result/Transaction/Transaction.php
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public function isPaid()
*/
public function isPending()
{
return $this->data['paymentDetails']['stateName'] == 'PENDING';
return $this->data['paymentDetails']['stateName'] == 'PENDING' || $this->data['paymentDetails']['stateName'] == 'VERIFY';
}

/**
Expand Down Expand Up @@ -149,4 +149,4 @@ public function getExtra3()
return $this->data['statsDetails']['extra3'];
}

}
}

0 comments on commit 8d40259

Please sign in to comment.