Ejemplo n.º 1
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getPlayer()
 {
     return $this->hasMany(Players::className(), ['country_id' => 'id']);
 }
Ejemplo n.º 2
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getPlayerTwo()
 {
     return $this->hasOne(Players::className(), ['id' => 'player_two_id']);
 }
Ejemplo n.º 3
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getPlayers()
 {
     return $this->hasMany(Players::className(), ['teams_id' => 'id']);
 }