Skip to content

Commit

Permalink
[DomCrawler] Fix FileFormField PHPDoc
Browse files Browse the repository at this point in the history
  • Loading branch information
dunglas authored and fabpot committed Aug 30, 2019
1 parent 2f0e66c commit 6dc952f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Field/ChoiceFormField.php
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ public function untick()
/**
* Sets the value of the field.
*
* @param string|array $value The value of the field
* @param string|array|bool $value The value of the field
*
* @throws \InvalidArgumentException When value type provided is not correct
*/
Expand Down
2 changes: 1 addition & 1 deletion Field/FileFormField.php
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public function upload($value)
/**
* Sets the value of the field.
*
* @param string $value The value of the field
* @param string|null $value The value of the field
*/
public function setValue($value)
{
Expand Down
2 changes: 1 addition & 1 deletion Field/FormField.php
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ public function getValue()
/**
* Sets the value of the field.
*
* @param string $value The value of the field
* @param string|array|bool|null $value The value of the field
*/
public function setValue($value)
{
Expand Down

0 comments on commit 6dc952f

Please sign in to comment.