Skip to content

Commit 2021b13

Browse files
author
PHP CS Fixer
committed
Fix code style (php-cs-fixer)
1 parent 2692745 commit 2021b13

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/PriceFormatter.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public static function format(float $decimal, Currency $currency, array $overrid
2626
if ($currency->trimTrailingDecimalZeros()) {
2727
// Remove trailing zeros from the formatted string
2828
$decimal = rtrim($decimal, '0');
29-
29+
3030
// Once there are no more decimal values, remove the decimal separator as well
3131
$decimal = rtrim($decimal, $currency->decimalSeparator());
3232
}

0 commit comments

Comments
 (0)