white; } /** * @param Pairing|null $white * @return Game */ public function setWhite(?Pairing $white): Game { $this->white = $white; return $this; } /** * @return Pairing|null */ public function getBlack(): ?Pairing { return $this->black; } /** * @param Pairing|null $black * @return Game */ public function setBlack(?Pairing $black): Game { $this->black = $black; return $this; } /** * @return Gameresult|null */ public function getResult(): ?Gameresult { return $this->result; } /** * @param Gameresult|null $result * @return Game */ public function setResult(?Gameresult $result): Game { $this->result = $result; return $this; } }