Exemplo n.º 1
0
 /**
  * Finds the OrderReturn model based on its primary key value.
  * If the model is not found, a 404 HTTP exception will be thrown.
  * @param integer $order_return_id
  * @param integer $order_id
  * @return OrderReturn the loaded model
  * @throws NotFoundHttpException if the model cannot be found
  */
 protected function findModel($order_return_id, $order_id)
 {
     if (($model = OrderReturn::findOne(['order_return_id' => $order_return_id, 'order_id' => $order_id])) !== null) {
         return $model;
     } else {
         throw new NotFoundHttpException('The requested page does not exist.');
     }
 }