Skip to content

Commit

Permalink
Fix Saman null 'tracking_code' & 'card_number'
Browse files Browse the repository at this point in the history
Fix Saman null 'tracking_code' & 'card_number'
  • Loading branch information
mehrdadx10 authored May 23, 2018
1 parent de900ad commit 68d245d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Saman/Saman.php
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,8 @@ function getCallback()
protected function userPayment()
{
$this->refId = Input::get('RefNum');
$this->trackingCode = Input::get('ResNum');
$this->trackingCode = Input::get('‫‪TRACENO‬‬');
$this->cardNumber = Input::get('‫‪SecurePan‬‬');
$payRequestRes = Input::get('State');
$payRequestResCode = Input::get('StateCode');

Expand Down

0 comments on commit 68d245d

Please sign in to comment.