/** * Finds the ReputationEvent model based on its primary key value. * If the model is not found, a 404 HTTP exception will be thrown. * @param string $id * @return ReputationEvent the loaded model * @throws NotFoundHttpException if the model cannot be found */ protected function findModel($id) { if (($model = ReputationEvent::findOne($id)) !== null) { return $model; } else { throw new NotFoundHttpException('The requested page does not exist.'); } }
/** * @return \yii\db\ActiveQuery */ public function getReputationEvents() { return $this->hasMany(ReputationEvent::className(), ['person_id' => 'person_id']); }