Skip to content

Commit

Permalink
Merge pull request #3118 from ertanyildiz/hotfix-1
Browse files Browse the repository at this point in the history
[ci skip] fixed missing ) after statement
  • Loading branch information
michalsn authored Jun 18, 2020
2 parents a4917b1 + 7cd9dcf commit 732045e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion user_guide_src/source/incoming/incomingrequest.rst
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ and uses best practices to minimize any security risks.
$files = $request->getFiles();

// Grab the file by name given in HTML form
if ($files->hasFile('uploadedFile')
if ($files->hasFile('uploadedFile'))
{
$file = $files->getFile('uploadedfile');

Expand Down

0 comments on commit 732045e

Please sign in to comment.