percentage = $percentage; return $this; } /** * Get percentage. * * @return string */ public function getPercentage() { return $this->percentage; } public function setTitle(string $title): self { $this->title = $title; return $this; } /** * Get title. * * @return string */ public function getTitle() { return $this->title; } public function setAcronym(string $acronym): self { $this->acronym = $acronym; return $this; } /** * Get acronym. * * @return string */ public function getAcronym() { return $this->acronym; } /** * Get id. * * @return int */ public function getId() { return $this->id; } public function getGradeModel(): GradeModel { return $this->gradeModel; } public function setGradeModel(GradeModel $gradeModel): self { $this->gradeModel = $gradeModel; return $this; } }