Пример #1
0
 public function confirmPlayerInMatch($user_id, $match_id)
 {
     try {
         Match::confirmUserIdInMatchTeam($user_id, $match_id);
     } catch (\Exception $e) {
         throw $e;
     }
 }