id; } public function getTitle() : string { return $this->title; } public function setTitle(string $title) : void { $this->title = $title; } /** * Get description * * @return string * * @since 1.0.0 */ public function getDescription() : string { return $this->description; } public function getDescriptionRaw() : string { return $this->descriptionRaw; } public function setDescriptionRaw(string $description) : void { $this->descriptionRaw = $description; } public function getUnit() { return $this->unit; } public function setUnit($unit) : void { $this->unit = $unit; } public function getDepartment() { return $this->department; } public function setDepartment($department) : void { $this->department = $department; } public function getResponsible() { return $this->responsible; } public function setResponsible($responsible) : void { $this->responsible = $responsible; } public function getDeputy() { return $this->deputy; } public function setDeputy($deputy) : void { $this->deputy = $deputy; } }