Skip to content

Commit

Permalink
fix: date format
Browse files Browse the repository at this point in the history
  • Loading branch information
brokeyourbike committed Feb 27, 2024
1 parent 209e1e3 commit 7f6b7d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Client.php
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ public function send(TransactionInterface $transaction): ?Response
->withBeneficiaryName($transaction->getRecipientName())
->withDebitAccount($this->config->getDebitAccount())
->withTransactionRef($transaction->getReference())
->withPaymentDueDate($transaction->getDueDate()->format('Y-m-d')))
->withPaymentDueDate($transaction->getDueDate()->format('d/m/Y')))
)
->withClientInfo($user)
->withMAC($mac)
Expand Down

0 comments on commit 7f6b7d1

Please sign in to comment.