8000 [Form] Add phpdoc to `RequestHandlerInterface::isFileUpload()` method by issei-m · Pull Request #25040 · symfony/symfony · GitHub
[go: up one dir, main page]

Skip to content

[Form] Add phpdoc to RequestHandlerInterface::isFileUpload() method #25040

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

Closed
wants to merge 2 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
[Form] Tweak phpdoc of RequestHandlerInterface
  • Loading branch information
issei-m committed Nov 20, 2017
commit 8181ca075ced5da9a456ac62792f05701d94c450
4 changes: 2 additions & 2 deletions src/Symfony/Component/Form/RequestHandlerInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ interface RequestHandlerInterface
public function handleRequest(FormInterface $form, $request = null);

/**
* Returns true if the given data is used to upload the file.
* Returns true if the given data is a file upload.
*
* @param mixed $data the form field data
* @param mixed $data The form field data
*
* @return bool
*/
Expand Down
0