From 27d0e3a9cf8fb3f8b8d59e4e7b3ed64e7014d517 Mon Sep 17 00:00:00 2001 From: Mohammad Hafijul Islam Date: Wed, 8 May 2024 15:59:01 +0600 Subject: [PATCH] dummy bank removed --- src/Vendors/TransFastApi.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/Vendors/TransFastApi.php b/src/Vendors/TransFastApi.php index b3e5db5..8177732 100644 --- a/src/Vendors/TransFastApi.php +++ b/src/Vendors/TransFastApi.php @@ -85,8 +85,7 @@ public function getData($url, $params = []) curl_setopt($curl, CURLOPT_RETURNTRANSFER, true); curl_setopt($curl, CURLOPT_HTTPHEADER, [ 'Content-Type: application/json', - 'Authorization: Credentials '.$this->config[$this->status]['token']] - ); + 'Authorization: Credentials '.$this->config[$this->status]['token']]); $response = curl_exec($curl); $info = curl_getinfo($curl);