N. srv / validaProducto.php

1<?php
2
3require_once __DIR__ . "/../lib/php/NOT_FOUND.php";
4
5function validaProducto($producto, $prodId)
6{
7 if ($producto === false) {
8 $htmlId = htmlentities($prodId);
9 throw new ProblemDetails(
10 status: NOT_FOUND,
11 title: "Producto no encontrado.",
12 type: "/error/productonoencontrado.html",
13 detail: "No se encontró ningún producto con el id $htmlId.",
14 );
15 }
16}
17
skip_previous skip_next