Total Complexity | 2 |
Total Lines | 17 |
Duplicated Lines | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
9 | final class NumericHelper |
||
10 | { |
||
11 | /** |
||
12 | * Returns string representation of a number value without thousands separators and with dot as decimal separator. |
||
13 | * |
||
14 | * @param float|string $value |
||
15 | * |
||
16 | * @return string |
||
17 | */ |
||
18 | public static function normalize(float|string $value): string |
||
28 |