Added some more tests.

Also changed the behavior of some code to meet the expectation.
This commit is contained in:
Jan Böhmer 2019-09-22 23:47:40 +02:00
parent 322778af68
commit a97d016740
8 changed files with 523 additions and 12 deletions

View file

@ -124,7 +124,11 @@ class AmountFormatter
}
//Otherwise just output it
$format_string = '%.' . $options['decimals'] . 'f ' . $options['unit'];
if (!empty($options['unit'])) {
$format_string = '%.' . $options['decimals'] . 'f ' . $options['unit'];
} else { //Dont add space after number if no unit was specified
$format_string = '%.' . $options['decimals'] . 'f';
}
return sprintf($format_string, $value);
}
}