Skip to content

Commit 676e3f0

Browse files
authored
Merge pull request #18 from lecano/analysis-nKjeL1
Apply fixes from StyleCI
2 parents 4fce739 + 0fcc30e commit 676e3f0

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

src/NumeroALetras.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -335,7 +335,7 @@ private function convertNumber(int|string $number): string
335335
/**
336336
* Converts a 6-digit group into Spanish words (thousands + hundreds).
337337
*
338-
* @param string $group A 6-digit numeric string.
338+
* @param string $group A 6-digit numeric string.
339339
* @param bool $forceApocopeForOne If true, terminal "UNO" is forced to "UN".
340340
*
341341
* @return string

test-library.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99
$number = $argv[1] ?? '';
1010

1111
if ($number === '') {
12-
echo 'Usage: php test-library.php <number> [decimals] [currency] [cents]' . PHP_EOL;
13-
echo 'Example: php test-library.php 1234567890123.45 2 SOLES CENTIMOS' . PHP_EOL;
14-
exit(1);
12+
echo 'Usage: php test-library.php <number> [decimals] [currency] [cents]' . PHP_EOL;
13+
echo 'Example: php test-library.php 1234567890123.45 2 SOLES CENTIMOS' . PHP_EOL;
14+
exit(1);
1515
}
1616

1717
$numberValue = (float) $number;

0 commit comments

Comments
 (0)