| 1 | <?php declare(strict_types=1); |
||
| 11 | class Project |
||
| 12 | { |
||
| 13 | /** |
||
| 14 | * @var integer |
||
| 15 | */ |
||
| 16 | private $id; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * @var integer |
||
| 20 | */ |
||
| 21 | private $cid; |
||
| 22 | |||
| 23 | /** |
||
| 24 | * @var String |
||
| 25 | */ |
||
| 26 | private $name; |
||
| 27 | |||
| 28 | /** |
||
| 29 | * @return mixed |
||
| 30 | */ |
||
| 31 | public function getId(): int |
||
| 35 | |||
| 36 | /** |
||
| 37 | * @param mixed $id |
||
| 38 | */ |
||
| 39 | public function setId(int $id) |
||
| 43 | |||
| 44 | /** |
||
| 45 | * @return mixed |
||
| 46 | */ |
||
| 47 | public function getCid(): ?int |
||
| 51 | |||
| 52 | /** |
||
| 53 | * @param mixed $cid |
||
| 54 | */ |
||
| 55 | public function setCid(?int $cid) |
||
| 59 | |||
| 60 | /** |
||
| 61 | * @return mixed |
||
| 62 | */ |
||
| 63 | public function getName(): String |
||
| 67 | |||
| 68 | /** |
||
| 69 | * @param mixed $name |
||
| 70 | */ |
||
| 71 | public function setName(String $name) |
||
| 75 | } |
||
| 76 |