Skip to content

Commit

Permalink
Minor Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
youngbobby committed Oct 17, 2016
1 parent c38e24b commit fd2d28f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Interswitch.php
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ public function query(array $array)
{
$product_id = array_get($array, 'product_id', $this->productid);
$txnref = $this->getTxnRef(array_get($array, 'txnref'));
$amount = $this->convert(array_get($array, 'amount'));
$amount = array_get($array, 'amount');
$hash = array_get($array, 'hash', $this->hash($product_id.$txnref.$this->mackey));

$client = new Client([
Expand Down

0 comments on commit fd2d28f

Please sign in to comment.