diff --git a/src/Models/Game.php b/src/Models/Game.php index e8922d8..cc63b69 100644 --- a/src/Models/Game.php +++ b/src/Models/Game.php @@ -19,7 +19,7 @@ abstract class Game /** @var Pairing|null */ private $black; - /** @var GameResult */ + /** @var GameResult|null */ private $result; /** @@ -59,18 +59,18 @@ abstract class Game } /** - * @return Gameresult + * @return Gameresult|null */ - public function getResult(): Gameresult + public function getResult(): ?Gameresult { return $this->result; } /** - * @param Gameresult $result + * @param Gameresult|null $result * @return Game */ - public function setResult(Gameresult $result): Game + public function setResult(?Gameresult $result): Game { $this->result = $result; return $this;