Example #1
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getType()
 {
     return $this->hasOne(DeathReasonType::className(), ['id' => 'type_id']);
 }
 public function rules()
 {
     return [[['type'], 'exist', 'targetClass' => DeathReasonType::className(), 'targetAttribute' => 'key']];
 }