[BUGFIX] Add support for mixed value types in InputItem as requested by #438

This commit is contained in:
Simon Sessingø
2021-03-23 01:36:23 +01:00
parent 6686de46b9
commit 90b0747dbd
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -62,10 +62,10 @@ class InputItem implements IInputItem, \IteratorAggregate
/**
* Set input value
* @param string $value
* @param mixed $value
* @return static
*/
public function setValue(string $value): IInputItem
public function setValue($value): IInputItem
{
$this->value = $value;