1 | <?php |
||
17 | class NotificationType |
||
18 | { |
||
19 | private $type; |
||
20 | |||
21 | public function __construct(string $type) |
||
25 | |||
26 | private function setType(string $type) : void |
||
31 | |||
32 | private function checkTypeIsValid(string $type) : void |
||
38 | |||
39 | private function availableTypes() : array |
||
48 | |||
49 | public function type() : string |
||
53 | |||
54 | public function __toString() : string |
||
58 | } |
||
59 |