id = $id; $this->name = $name; $this->password = $password; $this->nbPlayer = $nbPlayers; } public function getId(): int { return $this->id; } public function getName() { return $this->name; } public function getNbPlayers() { return $this->nbPlayers; } public function setNbplayers(int $nbPlayers) { $this->nbPlayer = $nbPlayers; } }