| 1 | <?php declare(strict_types=1); |
||
| 11 | class Task |
||
| 12 | { |
||
| 13 | /** |
||
| 14 | * @var string |
||
| 15 | */ |
||
| 16 | private $description; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * @var string |
||
| 20 | */ |
||
| 21 | private $timeLog; |
||
| 22 | |||
| 23 | /** |
||
| 24 | * @var integer |
||
| 25 | */ |
||
| 26 | private $clientId; |
||
| 27 | |||
| 28 | /** |
||
| 29 | * @var integer |
||
| 30 | */ |
||
| 31 | private $projectId; |
||
| 32 | |||
| 33 | /** |
||
| 34 | * @return string |
||
| 35 | */ |
||
| 36 | public function getDescription(): string |
||
| 40 | |||
| 41 | /** |
||
| 42 | * @param string $description |
||
| 43 | */ |
||
| 44 | public function setDescription(string $description) |
||
| 48 | |||
| 49 | /** |
||
| 50 | * @return string |
||
| 51 | */ |
||
| 52 | public function getTimeLog(): string |
||
| 56 | |||
| 57 | /** |
||
| 58 | * @param string $timeLog |
||
| 59 | */ |
||
| 60 | public function setTimeLog(string $timeLog) |
||
| 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 int |
||
| 83 | */ |
||
| 84 | public function getProjectId(): int |
||
| 88 | |||
| 89 | /** |
||
| 90 | * @param int $projectId |
||
| 91 | */ |
||
| 92 | public function setProjectId(int $projectId) |
||
| 96 | } |
||
| 97 |