| 1 | <?php |
||
| 17 | class TaskPriority |
||
| 18 | { |
||
| 19 | const LOW = 'low'; |
||
| 20 | const MEDIUM = 'medium'; |
||
| 21 | const HIGH = 'high'; |
||
| 22 | |||
| 23 | private $priority; |
||
| 24 | |||
| 25 | private function __construct(string $priority) |
||
| 29 | |||
| 30 | public static function low() : TaskPriority |
||
| 34 | |||
| 35 | public static function medium() : TaskPriority |
||
| 39 | |||
| 40 | public static function high() : TaskPriority |
||
| 44 | |||
| 45 | public function priority() : string |
||
| 49 | |||
| 50 | public function __toString() : string |
||
| 54 | } |
||
| 55 |