1 | <?php |
||
5 | final class Direction |
||
6 | { |
||
7 | public const NORTH = 'n'; |
||
8 | public const SOUTH = 's'; |
||
9 | public const EAST = 'e'; |
||
10 | public const WEST = 'w'; |
||
11 | |||
12 | private $direction; |
||
13 | |||
14 | 1 | private function __construct(string $direction) |
|
18 | |||
19 | 1 | public static function north(): Direction |
|
23 | |||
24 | 1 | public static function south(): Direction |
|
28 | |||
29 | 1 | public static function east(): Direction |
|
33 | |||
34 | 1 | public static function west(): Direction |
|
38 | |||
39 | 1 | public function direction(): string |
|
43 | } |
||
44 |