You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The summary of the problem I encountered can be found on the Laminas forum.
In short, I would like to be able to inject parameters into controller action functions so that I don't have to fetch/cast them via the Request object, either on top of the action, producing a large clutter of repetitive code lines, neither throughout in the code to avoid the clutter which only makes it more difficult to understand the request the action is supposed to handle.
The mechanism I'm referring too is achieved in the Symfony world with Param Converters or with the @RequestBody annotation in Spring Framework
The text was updated successfully, but these errors were encountered:
Feature Request
Summary
The summary of the problem I encountered can be found on the Laminas forum.
In short, I would like to be able to inject parameters into controller action functions so that I don't have to fetch/cast them via the Request object, either on top of the action, producing a large clutter of repetitive code lines, neither throughout in the code to avoid the clutter which only makes it more difficult to understand the request the action is supposed to handle.
The mechanism I'm referring too is achieved in the Symfony world with Param Converters or with the
@RequestBody
annotation in Spring FrameworkThe text was updated successfully, but these errors were encountered: