예제 #1
0
 /**
  * Finds the State model based on its primary key value.
  * If the model is not found, a 404 HTTP exception will be thrown.
  * @param integer $id
  * @return State the loaded model
  * @throws NotFoundHttpException if the model cannot be found
  */
 protected function findModel($id)
 {
     if (($model = State::findOne($id)) !== null) {
         return $model;
     } else {
         throw new NotFoundHttpException('The requested page does not exist.');
     }
 }
예제 #2
0
파일: User.php 프로젝트: pylypen/api-side
 private function getState()
 {
     return State::findOne($this->user_state)->state_code;
 }