From 6e03c4d2189e51b61c88c80e5e52bf8efa684cc1 Mon Sep 17 00:00:00 2001 From: Nurmuhammet Allanov Date: Tue, 18 Nov 2025 00:16:52 +0500 Subject: [PATCH] wip --- .../OnlinePayment/Repositories/OnlinePaymentRepository.php | 6 ------ 1 file changed, 6 deletions(-) diff --git a/app/Modules/OnlinePayment/Repositories/OnlinePaymentRepository.php b/app/Modules/OnlinePayment/Repositories/OnlinePaymentRepository.php index 1f12337..f0b53e8 100644 --- a/app/Modules/OnlinePayment/Repositories/OnlinePaymentRepository.php +++ b/app/Modules/OnlinePayment/Repositories/OnlinePaymentRepository.php @@ -263,12 +263,6 @@ class OnlinePaymentRepository $username = $bankBranch->offsetExists($paymentHistory->api_client.'_username') ? $bankBranch->{$paymentHistory->api_client.'_username'} : ''; $password = $bankBranch->offsetExists($paymentHistory->api_client.'_password') ? $bankBranch->{$paymentHistory->api_client.'_password'} : ''; - info([ - 'bankBranch' => $bankBranch, - 'username' => $username, - 'password' => $password, - ]); - if ($username === '' || $password === '') { return $this->paymentFailed('(USERNAME OR PASSWORD NOT FOUND)'); }