Skip to content

Commit

Permalink
Merge pull request #3 from php-monsters/fix/adds-rrn-in-gateway-ref-i…
Browse files Browse the repository at this point in the history
…d-column

fix: fill gateway ref id fields with rrn instead of ref_id
  • Loading branch information
samuraee authored Jan 4, 2023
2 parents 6008d3b + fb8b617 commit 7567b13
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Provider/AsanPardakhtProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ public function getTransactionResult(): bool

if ($response->successful() && $response->status() === 200 && !empty($response->body())) {
$this->getTransaction()->setCallBackParameters($response->json());
$this->getTransaction()->setReferenceId($response->json('refID'));
$this->getTransaction()->setReferenceId($response->json('rrn'));

return true;
}
Expand Down

0 comments on commit 7567b13

Please sign in to comment.