Exemplo n.º 1
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getApostas()
 {
     return $this->hasMany(Aposta::className(), ['id_confronto' => 'id']);
 }
Exemplo n.º 2
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getIdAposta()
 {
     return $this->hasOne(Aposta::className(), ['id' => 'id_aposta']);
 }