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