1 | <?php |
||
10 | class Status |
||
11 | { |
||
12 | |||
13 | /** |
||
14 | * @var int |
||
15 | */ |
||
16 | private $id; |
||
17 | |||
18 | /** |
||
19 | * @var string |
||
20 | */ |
||
21 | private $value; |
||
22 | |||
23 | /** |
||
24 | * @return int |
||
25 | */ |
||
26 | 1 | public function getId(): int |
|
30 | |||
31 | /** |
||
32 | * @param int $id |
||
33 | * |
||
34 | * @return Status |
||
35 | */ |
||
36 | 3 | public function setId(int $id): Status |
|
41 | |||
42 | /** |
||
43 | * @return string |
||
44 | */ |
||
45 | 1 | public function getValue(): string |
|
49 | |||
50 | /** |
||
51 | * @param string $value |
||
52 | * |
||
53 | * @return Status |
||
54 | */ |
||
55 | 3 | public function setValue(string $value): Status |
|
60 | |||
61 | } |
||
62 |