Skip to content

Commit

Permalink
Update Ovo.php
Browse files Browse the repository at this point in the history
  • Loading branch information
namdevel committed Mar 11, 2022
1 parent 957b54b commit 2c8fb5d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Ovo.php
Original file line number Diff line number Diff line change
Expand Up @@ -501,7 +501,7 @@ public function transferBankInquiry($bank_code, $bank_number, $amount, $message
$field = array(
'bankCode' => $bank_code,
'accountNo' => $bank_number,
'amount' => $amount,
'amount' => (string) $amount,
'message' => $message
);

Expand All @@ -518,7 +518,7 @@ public function transferBankDirect($bank_code, $bank_number, $bank_name, $bank_a
$field = array(
'bankCode' => $bank_code,
'accountNo' => self::getOvoCashCardNumber(),
'amount' => $amount,
'amount' => (string) $amount,
'accountNoDestination' => $bank_number,
'bankName' => $bank_name,
'accountName' => $bank_account_name,
Expand Down

0 comments on commit 2c8fb5d

Please sign in to comment.