1 | <?php declare(strict_types=1); |
||
11 | class Project |
||
12 | { |
||
13 | /** |
||
14 | * @var integer |
||
15 | */ |
||
16 | private $id; |
||
17 | |||
18 | /** |
||
19 | * @var string |
||
20 | */ |
||
21 | private $name; |
||
22 | |||
23 | /** |
||
24 | * @var integer |
||
25 | */ |
||
26 | private $clientId; |
||
27 | |||
28 | /** |
||
29 | * @var bool |
||
30 | */ |
||
31 | private $isDeleted; |
||
32 | |||
33 | /** |
||
34 | * @return int |
||
35 | */ |
||
36 | public function getId() |
||
40 | |||
41 | /** |
||
42 | * @param int $id |
||
43 | */ |
||
44 | public function setId(int $id) |
||
48 | |||
49 | /** |
||
50 | * @return string |
||
51 | */ |
||
52 | public function getName(): string |
||
56 | |||
57 | /** |
||
58 | * @param string $name |
||
59 | */ |
||
60 | public function setName(string $name) |
||
64 | |||
65 | /** |
||
66 | * @return int |
||
67 | */ |
||
68 | public function getClientId(): int |
||
72 | |||
73 | /** |
||
74 | * @param int $clientId |
||
75 | */ |
||
76 | public function setClientId(int $clientId) |
||
80 | |||
81 | /** |
||
82 | * @return bool |
||
83 | */ |
||
84 | public function getIsDeleted() |
||
88 | |||
89 | /** |
||
90 | * @param bool $isDeleted |
||
91 | */ |
||
92 | public function setIsDeleted(bool $isDeleted) |
||
96 | } |
||
97 |