1 | <?php declare(strict_types=1); |
||
11 | class Client |
||
12 | { |
||
13 | /** |
||
14 | * @var integer |
||
15 | */ |
||
16 | private $id; |
||
17 | |||
18 | /** |
||
19 | * @var String |
||
20 | */ |
||
21 | private $name; |
||
22 | |||
23 | /** |
||
24 | * @var bool |
||
25 | */ |
||
26 | private $isDeleted; |
||
27 | |||
28 | |||
29 | /** |
||
30 | * @return mixed |
||
31 | */ |
||
32 | public function getId(): int |
||
36 | |||
37 | /** |
||
38 | * @param mixed $id |
||
39 | */ |
||
40 | public function setId(int $id) |
||
44 | |||
45 | /** |
||
46 | * @return mixed |
||
47 | */ |
||
48 | public function getName(): String |
||
52 | |||
53 | /** |
||
54 | * @param mixed $name |
||
55 | */ |
||
56 | public function setName(String $name) |
||
60 | |||
61 | /** |
||
62 | * @return bool |
||
63 | */ |
||
64 | public function getIsDeleted() |
||
68 | |||
69 | /** |
||
70 | * @param bool $isDeleted |
||
71 | */ |
||
72 | public function setIsDeleted(bool $isDeleted) |
||
76 | } |
||
77 |