Skip to content

Commit

Permalink
Fix date parts separator
Browse files Browse the repository at this point in the history
  • Loading branch information
LucaGallinari committed Sep 5, 2024
1 parent 7da10b7 commit 58366f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Client/ValueObject/Order.php
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ public function toArray(): array
return [
'amount' => $this->amount,
'number' => $this->number,
'issueDate' => $this->issueDate->format('d-m-Y H:i'), // today as date DD/MM/YYYY HH:mm
'issueDate' => $this->issueDate->format('d/m/Y H:i'), // today as date DD/MM/YYYY HH:mm
'description' => $this->description,
'remittance' => $this->remittance,
'okRedirect' => $this->okRedirectUrl,
Expand Down

0 comments on commit 58366f5

Please sign in to comment.