Exemple #1
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getPokerEventLeagues()
 {
     return $this->hasMany(PokerEventLeague::className(), ['leagueid' => 'leagueid']);
 }
Exemple #2
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getEventLeaguesList()
 {
     return $this->hasMany(PokerEventLeague::className(), ['event_id' => 'id'])->with('league');
 }