intitule = $intitule; $this->note = $note; $this->coef = $coef; $this->max = $max; } public function getIntitule() { return $this->intitule; } public function getNote() { return $this->note; } public function getNoteOn20() { return ($this->note / $this->max) * 20; } public function getCoef() { return $this->coef; } public function getMax() { return $this->max; } }