id = $id; $this->email = $email; $this->motDePasse = $motDePasse; $this->role = $role; $this->profil = new Profil($nom, $prenom, $email, "","", "", "",""); } /** * @return string */ public function getEmail() : string { return $this->email; } public function getProfil() : Profil { return $this->profil; } /** * @return string */ public function getMotDePasse(): string { return $this->motDePasse; } public function getRole(): String { return $this->role; } public function getPassword(): string { return $this->motDePasse; } public function getPrenom() { return $this->profil->getPrenom(); } public function getNom() { return $this->profil->getNom(); } public function getId() { return $this->id; } }