Skip to content

Commit

Permalink
fix issue #22 EstPos undefined txstatus
Browse files Browse the repository at this point in the history
  • Loading branch information
nuryagdym committed Mar 30, 2021
1 parent 1e89ffa commit 8df09f4
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/Gateways/EstPos.php
Original file line number Diff line number Diff line change
Expand Up @@ -489,13 +489,11 @@ protected function map3DPaymentData($raw3DAuthResponseData, $rawPaymentResponseD
'year' => (string) $raw3DAuthResponseData['Ecom_Payment_Card_ExpDate_Year'],
'amount' => (string) $raw3DAuthResponseData['amount'],
'currency' => (string) $raw3DAuthResponseData['currency'],
'tx_status' => (string) $raw3DAuthResponseData['txstatus'],
'eci' => (string) $raw3DAuthResponseData['eci'],
'cavv' => (string) $raw3DAuthResponseData['cavv'],
'xid' => (string) $raw3DAuthResponseData['xid'],
'xid' => (string) $raw3DAuthResponseData['oid'],
'md_error_message' => (string) $raw3DAuthResponseData['mdErrorMsg'],
'name' => (string) $raw3DAuthResponseData['firmaadi'],
'email' => (string) $raw3DAuthResponseData['Email'],
'3d_all' => $raw3DAuthResponseData,
];

Expand Down

0 comments on commit 8df09f4

Please sign in to comment.