Exemplo n.º 1
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getConfrontos1()
 {
     return $this->hasMany(Confronto::className(), ['vencedor' => 'id']);
 }
Exemplo n.º 2
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getIdConfronto()
 {
     return $this->hasOne(Confronto::className(), ['id' => 'id_confronto']);
 }
Exemplo n.º 3
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getConfrontos()
 {
     return $this->hasMany(Confronto::className(), ['id_grupo' => 'id']);
 }