コード例 #1
0
ファイル: League.php プロジェクト: aldegtyarev/fantasy
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getMatches()
 {
     return $this->hasMany(Match::className(), ['league_id' => 'id']);
 }
コード例 #2
0
ファイル: GameMode.php プロジェクト: aldegtyarev/fantasy
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getMatches()
 {
     return $this->hasMany(Match::className(), ['game_mode' => 'id']);
 }
コード例 #3
0
ファイル: Slot.php プロジェクト: aldegtyarev/fantasy
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getMatch()
 {
     return $this->hasOne(Match::className(), ['id' => 'match_id']);
 }
コード例 #4
0
ファイル: Lobby.php プロジェクト: aldegtyarev/fantasy
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getMatches()
 {
     return $this->hasMany(Match::className(), ['lobby_type' => 'id']);
 }