Example #1
0
 public static function startNew()
 {
     $game = new self();
     $game->tries_left = self::MAX_TRIES;
     $game->word = $game->getRandomWord();
     $game->status = self::BUSY;
     $game->characters_guessed = [];
     $game->save();
     return $game;
 }