Example #1
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getPhonePerson()
 {
     return $this->hasOne(PhonesPerson::className(), ['phone_person_id' => 'phone_person_id']);
 }
Example #2
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getPhonesPeople()
 {
     return $this->hasMany(PhonesPerson::className(), ['person_id' => 'person_id']);
 }