Ejemplo n.º 1
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getThirds()
 {
     return $this->hasMany(Third::className(), ['role_id' => 'id']);
 }
Ejemplo n.º 2
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getThird()
 {
     return $this->hasOne(Third::className(), ['id' => 'third_id']);
 }