GameModel::getResult can also return null

Fixes: Fatal error: Uncaught TypeError: Return value of JeroenED\Libpairtwo\Models\Game::getResult() must be an instance of JeroenED\Libpairtwo\Enums\Gameresult, null returned
This commit is contained in:
Jeroen De Meerleer 2019-05-28 21:04:45 +02:00
parent a854d8a5c6
commit 5c48e7c597

View File

@ -19,7 +19,7 @@ abstract class Game
/** @var Pairing|null */ /** @var Pairing|null */
private $black; private $black;
/** @var GameResult */ /** @var GameResult|null */
private $result; 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; return $this->result;
} }
/** /**
* @param Gameresult $result * @param Gameresult|null $result
* @return Game * @return Game
*/ */
public function setResult(Gameresult $result): Game public function setResult(?Gameresult $result): Game
{ {
$this->result = $result; $this->result = $result;
return $this; return $this;