Esempio n. 1
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getPlayer()
 {
     return $this->hasOne(PokerPlayer::className(), ['account_id' => 'account_id']);
 }
Esempio n. 2
0
 /**
  * возвращает информацию по игрокам на которых была сделана ставка
  *
  * @return \yii\db\ActiveQuery
  */
 public function getDraftPlayersInfo()
 {
     return $this->hasMany(PokerPlayer::className(), ['account_id' => 'account_id'])->viaTable('{{%poker_draft_player}}', ['draft_id' => 'id']);
 }