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