From 8df09f446d78be9b10342c7392d6c5711e82513f Mon Sep 17 00:00:00 2001 From: Nuryagdy Mustapayev Date: Tue, 30 Mar 2021 21:28:53 +0300 Subject: [PATCH] fix issue #22 EstPos undefined txstatus --- src/Gateways/EstPos.php | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/Gateways/EstPos.php b/src/Gateways/EstPos.php index 86523d5e..1c073da6 100644 --- a/src/Gateways/EstPos.php +++ b/src/Gateways/EstPos.php @@ -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, ];