Hi!
You can throw these kind of HTTP exceptions like this:
use Slim\Exception\HttpNotFoundException;
// ...
throw new HttpNotFoundException($request);
Make sure to pass the $request object.
Hi!
You can throw these kind of HTTP exceptions like this:
use Slim\Exception\HttpNotFoundException;
// ...
throw new HttpNotFoundException($request);
Make sure to pass the $request object.