예제 #1
0
파일: Match.php 프로젝트: eridal/vindinium
 /**
  * @return Hero
  */
 function winner()
 {
     $players = Arrays::sortBy($this->state->game->heroes, function ($hero) {
         return $hero->gold;
     });
     return end($players);
 }