id = $id; $this->name = $name; $this->password = $password; $this->nbPlayer = $nbPlayer; } public function getName() { return $this->name; } public function getNbPlayer() { return $this->nbPlayer; } public function setNbplayer(int $nbPlayer) { $this->nbPlayer = $nbPlayer; } }