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)'); }