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