-
-
Notifications
You must be signed in to change notification settings - Fork 9.6k
[HttpKernel] Fix variadic TypeError for #[MapUploadedFile]
#54901
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -170,7 +170,11 @@ public function onKernelControllerArguments(ControllerArgumentsEvent $event): vo | |
}; | ||
} | ||
|
||
$arguments[$i] = $payload; | ||
if ($argument->metadata->isVariadic() && \is_array($payload)) { | ||
array_splice($arguments, $i, 1, $payload); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. could we use array_merge instead? that might be more readable There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Seems like the PR is somewhat stale 😞 Unfortunately, array_merge won't work here because the current logic processes the existing I have added a bit updated fix to my PR, where I tried to fix another related issue with There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @melya I will close this PR then. Thank you :) |
||
} else { | ||
$arguments[$i] = $payload; | ||
} | ||
} | ||
|
||
$event->setArguments($arguments); | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
if the payload is not an array, we should throw a 422 instead, don't you think?
we should also use array_is_list so that we don't map to named arguments by mistake