1 | <?php |
||
7 | class State |
||
8 | { |
||
9 | const STATE_UNACTIVATED = 0; |
||
10 | const STATE_ACTIVATED = 1; |
||
11 | const STATE_DISABLED = 2; |
||
12 | const STATE_SUSPENDED = 3; |
||
13 | const STATE_BANNED = 4; |
||
14 | |||
15 | private $value; |
||
16 | |||
17 | /** |
||
18 | * @param $val |
||
19 | */ |
||
20 | 22 | public function __construct(int $val) |
|
27 | |||
28 | /** |
||
29 | * @return int |
||
30 | */ |
||
31 | 21 | public function getValue(): int |
|
35 | } |