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