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; } public function addPlayer(int $number) { $this->nbPlayer = $this->nbPlayer + $number ; } public function removePlayer(int $number) { $this->nbPlayer = $this->nbPlayer - $number ; } public function getPassword() { return $this->password; } public function idEqual($idTest) { return $this->id == $idTest ; } }