https://odan.github.io/2019/11/05/slim4-tutorial.html
If you liked the tutorial, please click here on the star button: https://github.com/odan/slim4-tutorial
For technical questions create an issue here: https://github.com/odan/slim4-tutorial/issues
If you have Slim framework specific questions use: https://discourse.slimframework.com/
Write your comments / suggestions / feedback here 👇
Hi @juanma-mol First thing is, the Action class is already a "controller", so calling a controller from an action makes no sense. An Action invokes a Service and a Service (business logic) invokes a Repository (data access logic). Now to your question...
To transform all PDOExecption into a JSON response, you can create a Middleware, (e.g.
DatabaseExceptionMiddleware
) that catches all database specific exceptions and transforms the exception into an JSON response.So your middleware could look like this:
Add this new middleware before the Slim ErrorMiddleware.