/**
  * @return \yii\db\ActiveQuery
  */
 public function getCity()
 {
     return $this->hasOne(ReceivedCity::className(), ['code' => 'city_code']);
 }
示例#2
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getCity()
 {
     return $this->hasMany(ReceivedCity::className(), ['country_code' => 'code'])->with('translations');
 }