| 1 | <?php |
||
| 17 | class TaskPriority |
||
| 18 | { |
||
| 19 | const LOW = 'low'; |
||
| 20 | const MEDIUM = 'medium'; |
||
| 21 | const HIGH = 'high'; |
||
| 22 | |||
| 23 | private $priority; |
||
| 24 | |||
| 25 | public function __construct(string $priority) |
||
| 32 | |||
| 33 | public static function low() : TaskPriority |
||
| 37 | |||
| 38 | public static function medium() : TaskPriority |
||
| 42 | |||
| 43 | public static function high() : TaskPriority |
||
| 47 | |||
| 48 | public function priority() : string |
||
| 52 | |||
| 53 | public function __toString() : string |
||
| 57 | } |
||
| 58 |