Esempio n. 1
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getThread()
 {
     return $this->hasOne(MsgThread::className(), ['id' => 'thread_id']);
 }
Esempio n. 2
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getMsgThreads0()
 {
     return $this->hasMany(MsgThread::className(), ['receiver' => 'id']);
 }