| Total Complexity | 3 |
| Total Lines | 16 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 19 | final class Locale implements LocaleInterface |
||
| 20 | { |
||
| 21 | 20 | public function __construct( |
|
| 22 | private readonly string $languageCode, |
||
| 23 | private readonly ?string $regionCode, |
||
| 24 | ) { |
||
| 25 | 20 | } |
|
| 26 | |||
| 27 | 20 | public function getLanguageCode(): string |
|
| 30 | } |
||
| 31 | |||
| 32 | 8 | public function getRegionCode(): ?string |
|
| 35 | } |
||
| 36 | } |
||
| 37 |