コード例 #1
0
ファイル: UserController.php プロジェクト: phucnv206/pinut
 protected function findModel($id)
 {
     if (($model = User::findOne($id)) !== null) {
         return $model;
     } else {
         throw new NotFoundHttpException('The requested page does not exist.');
     }
 }