[DomCrawler] Fix FileFormField PHPDoc

This commit is contained in:
Kévin Dunglas 2019-08-21 21:34:00 +02:00 committed by Fabien Potencier
parent 622ce1d0f4
commit 162bfc3cad
3 changed files with 3 additions and 3 deletions

View File

@ -113,7 +113,7 @@ class ChoiceFormField extends FormField
/**
* 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
*/

View File

@ -48,7 +48,7 @@ class FileFormField extends FormField
/**
* 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)
{

View File

@ -99,7 +99,7 @@ abstract class FormField
/**
* 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)
{