1 | <?php |
||
5 | final class Locale |
||
6 | { |
||
7 | /** |
||
8 | * @var string Locale key identifier |
||
9 | */ |
||
10 | private $value; |
||
11 | |||
12 | 78 | private function __construct(string $value) |
|
16 | |||
17 | 78 | public static function from(string $value) |
|
21 | |||
22 | 66 | public function get(): string |
|
26 | |||
27 | 1 | public function equals(self $other): bool |
|
31 | |||
32 | 66 | public function __toString(): string |
|
36 | } |
||
37 |