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