milestoneId = $milestoneId; $this->typeId = $typeId; $this->title = $title; $this->description = $description; $this->status = $status; $this->isActive = $isActive; } /** * @return int */ public function getMilestoneId(): int { return $this->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; } }