Beispiel #1
0
 /**
  * @param Game $game
  * @return bool
  */
 public function canAbort(Game $game) : bool
 {
     $this->chessGameService->setPgn($game->getPgn());
     return count($this->chessGameService->getMoveList()) < 3;
 }