id = $id; $this->nom = $nom; $this->prenom = $prenom; $this->pseudo = $pseudo; $this->mail = $mail; $this->password = $password; } /** * @return string */ public function getNom(): string { return $this->nom; } /** * @param string $nom */ public function setNom(string $nom): void { $this->nom = $nom; } }