Esempio n. 1
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getPublisher()
 {
     return $this->hasOne(Publisher::className(), ['id' => 'publisher_id']);
 }
Esempio n. 2
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getPublishers()
 {
     return $this->hasMany(Publisher::className(), ['city_id' => 'id']);
 }