| 1 | <?php |
||
| 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 | * @return string |
||
| 30 | */ |
||
| 31 | public function getDescription(): string |
||
| 35 | |||
| 36 | /** |
||
| 37 | * @param string $description |
||
| 38 | */ |
||
| 39 | public function setDescription(string $description) |
||
| 43 | |||
| 44 | /** |
||
| 45 | * @return string |
||
| 46 | */ |
||
| 47 | public function getTimeLog(): string |
||
| 51 | |||
| 52 | /** |
||
| 53 | * @param string $timeLog |
||
| 54 | */ |
||
| 55 | public function setTimeLog(string $timeLog) |
||
| 59 | |||
| 60 | /** |
||
| 61 | * @return int |
||
| 62 | */ |
||
| 63 | public function getClientId(): int |
||
| 67 | |||
| 68 | /** |
||
| 69 | * @param int $clientId |
||
| 70 | */ |
||
| 71 | public function setClientId(int $clientId) |
||
| 75 | } |
||
| 76 |