/** * @return \yii\db\ActiveQuery */ public function getMatches() { return $this->hasMany(Match::className(), ['league_id' => 'id']); }
/** * @return \yii\db\ActiveQuery */ public function getMatches() { return $this->hasMany(Match::className(), ['game_mode' => 'id']); }
/** * @return \yii\db\ActiveQuery */ public function getMatch() { return $this->hasOne(Match::className(), ['id' => 'match_id']); }
/** * @return \yii\db\ActiveQuery */ public function getMatches() { return $this->hasMany(Match::className(), ['lobby_type' => 'id']); }