id = $id; $this->mail = $mail; $this->nom = $nom; $this->prenom = $prenom; } protected function changeMail(String $newMail){ $this->mail = $newMail; } protected function changeNom(String $newNom){ $this->nom = $newNom; } protected function changePrenom(String $newPrenom){ $this->prenom = $newPrenom; } }