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 issue lies in our ReflectionService that extends the parameter information based on the index of the corresponding @param annotation instead of the name.
The text was updated successfully, but these errors were encountered:
Adjusts the behavior of `ReflectionService::getMethodParameters()` such that `@param` annotations are mapped to the corresponding method argument based in their _name_ instead of the _index_.
Fixes: #3423
Is there an existing issue for this?
Current Behavior
An exception
is thrown when trying to map arguments
Expected Behavior
no exception should be thrown :)
Steps To Reproduce
@param
annotation for the second argument:e.g. a HTTP request to http://127.0.0.1:8081/?a=valueA&b=valueB
Environment
Anything else?
The issue lies in our ReflectionService that extends the parameter information based on the index of the corresponding
@param
annotation instead of the name.The text was updated successfully, but these errors were encountered: