id = $id; $this->email = $email; $this->motDePasse = $motDePasse; $this->role = $role; } /** * @return string */ public function getId() : string { return $this->id; } /** * @return string */ public function getEmail() : string { return $this->email; } /** * @return string */ public function getMotDePasse(): string { return $this->motDePasse; } public function getRole(): Role { return $this->role; } }