typeId = $typeId; $this->title = $title; $this->description = $description; $this->status = $status; $this->isActive = $isActive; $this->milestoneId = $milestoneId; } /** * @return int */ public function getTypeId(): int { return $this->typeId; } /** * @return string */ public function getTitle(): string { return $this->title; } /** * @return string */ public function getDescription(): string { return $this->description; } /** * @return int */ public function getStatus(): int { return $this->status; } /** * @return bool */ public function isActive(): bool { return $this->isActive; } /** * @return int|null */ public function getMilestoneId(): ?int { return $this->milestoneId; } }