projectId = $projectId; $this->name = $name; $this->order = $order; $this->isComplete = $isComplete; } /** * @return int */ public function getProjectId(): int { return $this->projectId; } /** * @return string */ public function getName(): string { return $this->name; } /** * @return integer */ public function getOrder(): integer { return $this->order; } /** * @return bool */ public function IsComplete(): bool { return $this->isComplete; } }