Total Complexity | 4 |
Total Lines | 25 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
7 | class Scientific extends NumberBase implements Wizard |
||
8 | { |
||
9 | /** |
||
10 | * @param int $decimals number of decimal places to display, in the range 0-30 |
||
11 | * @param ?string $locale Set the locale for the scientific format; or leave as the default null. |
||
12 | * Locale has no effect for Scientific Format values, and is retained here for compatibility |
||
13 | * with the other Wizards. |
||
14 | * If provided, Locale values must be a valid formatted locale string (e.g. 'en-GB', 'fr', uz-Arab-AF). |
||
15 | * |
||
16 | * @throws Exception If a provided locale code is not a valid format |
||
17 | */ |
||
18 | 13 | public function __construct(int $decimals = 2, ?string $locale = null) |
|
22 | } |
||
23 | |||
24 | 6 | protected function getLocaleFormat(): string |
|
25 | { |
||
26 | 6 | return $this->format(); |
|
27 | } |
||
28 | |||
29 | 12 | public function format(): string |
|
32 | } |
||
33 | } |
||
34 |