1 | <?php |
||
16 | class StatusChangeNotice extends WordPressOption |
||
17 | { |
||
18 | public function __construct() |
||
22 | |||
23 | |||
24 | /** |
||
25 | * @return int |
||
26 | * @throws RuntimeException |
||
27 | */ |
||
28 | public function dismiss(): int |
||
37 | |||
38 | |||
39 | /** |
||
40 | * @return bool |
||
41 | * @throws RuntimeException |
||
42 | */ |
||
43 | public function isDismissed(): bool |
||
49 | |||
50 | |||
51 | /** |
||
52 | * @return string |
||
53 | * @throws RuntimeException |
||
54 | */ |
||
55 | private function getCurrentUser(): string |
||
65 | } |
||
66 |