From 50b03840ddeffe795c94f67a6525793bcfe45dea Mon Sep 17 00:00:00 2001 From: MD ARIFUL HAQUE Date: Sun, 5 May 2024 05:41:22 +0600 Subject: [PATCH] bug check 02 --- src/Vendors/IslamiBankApi.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Vendors/IslamiBankApi.php b/src/Vendors/IslamiBankApi.php index 3b850cf..1da862b 100644 --- a/src/Vendors/IslamiBankApi.php +++ b/src/Vendors/IslamiBankApi.php @@ -237,11 +237,11 @@ public function directCreditRemittance(array $data): array $explodeValue = explode('|', $response['Envelope']['Body']); $explodeValueCount = count($explodeValue) - 1; $return['origin_response'] = $response['Envelope']['Body']; - /*if ($explodeValueCount > 0) { + if ($explodeValueCount > 0) { $return['status'] = $explodeValue[0]; $return['status_code'] = $explodeValue[$explodeValueCount]; $return['message'] = $this->__responseCodeList($explodeValue[$explodeValueCount]); - }*/ + } return $return; }