Beispiel #1
0
 public function addUserToMatch($user_id, $match_id)
 {
     try {
         $match_player_id = Match::addUserToMatch($match_id, $user_id);
         //-- TODO:: Team Choosing
         return $match_player_id;
     } catch (\Exception $e) {
         throw $e;
     }
 }