|
@@ -241,7 +241,7 @@ class UnSettmatchLogic
|
|
|
public function getResult($game_code, $match_id)
|
|
public function getResult($game_code, $match_id)
|
|
|
{
|
|
{
|
|
|
$table = 'st_' . $game_code . '_result';
|
|
$table = 'st_' . $game_code . '_result';
|
|
|
- $ret = DB::table($table)->where(['match_id', $match_id])->first();
|
|
|
|
|
|
|
+ $ret = DB::table($table)->where('match_id', $match_id)->first();
|
|
|
return $ret;
|
|
return $ret;
|
|
|
}
|
|
}
|
|
|
|
|
|