Skip to content

Commit

Permalink
Update SpellNumber.php
Browse files Browse the repository at this point in the history
  • Loading branch information
rmunate authored Oct 13, 2023
1 parent 8db50e9 commit 418991d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/SpellNumber.php
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ private function doubleToLetters()
{
$parts = explode('.', $this->value);

if(!array_key_exists(1, $parts)) {
if (!array_key_exists(1, $parts)) {
return $this->integerToLetters();
}

Expand Down Expand Up @@ -187,7 +187,7 @@ private function doubleToMoney()
{
$parts = explode('.', $this->value);

if(!array_key_exists(1, $parts)) {
if (!array_key_exists(1, $parts)) {
return $this->integerToMoney();
}

Expand Down

0 comments on commit 418991d

Please sign in to comment.