milestoneId = $milestoneId; $this->typeId = $typeId; $this->title = $title; $this->description = $description; } /** * @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 null|string */ public function getDescription(): ?string { return $this->description; } }