Beispiel #1
0
 public function addMatchTeam($match_id, $team_name = '')
 {
     try {
         $match_team_id = Match::addMatchTeam($match_id, $team_name);
         return $match_team_id;
     } catch (\Exception $e) {
         throw $e;
     }
 }