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