コード例 #1
0
ファイル: RaptorImage.php プロジェクト: eibenm/raptorapp
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getRaptor()
 {
     return $this->hasOne(Raptor::className(), ['id' => 'raptor_id']);
 }
コード例 #2
0
ファイル: Prey.php プロジェクト: eibenm/raptorapp
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getIncident()
 {
     return $this->hasOne(Raptor::className(), ['id' => 'incident_id']);
 }