Total Complexity | 2 |
Total Lines | 22 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
7 | class FormatDollars extends AbstractActionStatic |
||
8 | { |
||
9 | /** |
||
10 | * Format a currency float value to a standard format. |
||
11 | * |
||
12 | * @param float $amount |
||
13 | * |
||
14 | * @param int $decimals |
||
15 | * @param string $thousands_sep |
||
16 | * @param bool $dollar_sign_prefix |
||
17 | * @return string |
||
18 | */ |
||
19 | public static function execute(float $amount, |
||
31 |