8000 [Form] Fix form value merging involving file upload, collection & checkbox by priyadi · Pull Request #54324 · symfony/symfony · GitHub
[go: up one dir, main page]

Skip to content

[Form] Fix form value merging involving file upload, collection & checkbox #54324

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

Open
wants to merge 13 commits into
base: 5.4
Choose a base branch
from
Prev Previous commit
Next Next commit
remove unneeded @params
  • Loading branch information
priyadi committed Mar 24, 2024
commit 60008f40f73f6067dd80f23ae6e717b033a4c529
4 changes: 1 addition & 3 deletions src/Symfony/Component/Form/Util/ParamFilesMerger.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,7 @@ class ParamFilesMerger
private array $files;

/**
* @param array $path The path to the current element, empty means the root
* @param array $params The parameters
* @param array $files The files
* @param array $path The path to the current element, empty means the root
*/
public function __construct(array $path, array $params, array $files)
{
Expand Down
0