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