예제 #1
0
파일: UserMain.php 프로젝트: ewwgit/eptri
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getRegister()
 {
     return $this->hasOne(Register::className(), ['uid' => 'id']);
 }
 protected function findModel($id)
 {
     if (($model = Register::findOne($id)) !== null) {
         return $model;
     } else {
         throw new NotFoundHttpException('The requested page does not exist.');
     }
 }