/**
  * @return Board
  *
  * @SuppressWarnings(PHPMD.StaticAccess)
  */
 private function getRandomBoard()
 {
     if ($this->boards === null) {
         $this->boards = Board::all();
     }
     return $this->boards->random();
 }