Total Complexity | 4 |
Total Lines | 28 |
Duplicated Lines | 0 % |
Coverage | 88.89% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
8 | final class Locale |
||
9 | { |
||
10 | /** |
||
11 | * Language code: ISO-639 2 character, alpha. |
||
12 | * Optional script code: ISO-15924 4 alpha. |
||
13 | * Optional country code: ISO-3166-1, 2 character alpha. |
||
14 | * Separated by underscores or dashes. |
||
15 | */ |
||
16 | public const STRUCTURE = '/^(?P<language>[a-z]{2})([-_](?P<script>[a-z]{4}))?([-_](?P<country>[a-z]{2}))?$/i'; |
||
17 | |||
18 | private NumberFormatter $formatter; |
||
19 | |||
20 | 28 | public function __construct(string $locale, int $style) |
|
21 | { |
||
22 | 28 | if (class_exists(NumberFormatter::class) === false) { |
|
23 | throw new Exception(); |
||
24 | } |
||
25 | |||
26 | 28 | $formatterLocale = str_replace('-', '_', $locale); |
|
27 | 28 | $this->formatter = new NumberFormatter($formatterLocale, $style); |
|
28 | 28 | if ($this->formatter->getLocale() !== $formatterLocale) { |
|
29 | 3 | throw new Exception("Unable to read locale data for '{$locale}'"); |
|
30 | } |
||
31 | } |
||
32 | |||
33 | 25 | public function format(): string |
|
36 | } |
||
37 | } |
||
38 |