Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
7 | 1 | public static function format(float $amount, ?string $currency = null): string |
|
8 | { |
||
9 | 1 | return $currency.number_format( |
|
10 | 1 | $amount, |
|
11 | 1 | (int) config('iprosoftware-sync.number_format.decimals'), |
|
12 | 1 | config('iprosoftware-sync.number_format.decimal_separator'), |
|
13 | 1 | config('iprosoftware-sync.number_format.thousands_separator'), |
|
14 | 1 | ); |
|
17 |