コード例 #1
0
ファイル: Complaint.php プロジェクト: hammadhk/cda_proto
 public function getComplainant()
 {
     return $this->hasOne(Complainant::className(), ['id' => 'complainant_id']);
 }
コード例 #2
0
ファイル: Sector.php プロジェクト: hammadhk/cda_proto
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getComplainants()
 {
     return $this->hasMany(Complainant::className(), ['sector_id' => 'id']);
 }