diff --git a/src/Pecee/Http/Input/InputItem.php b/src/Pecee/Http/Input/InputItem.php index 8df2c57..cad36f4 100644 --- a/src/Pecee/Http/Input/InputItem.php +++ b/src/Pecee/Http/Input/InputItem.php @@ -46,6 +46,16 @@ class InputItem { return $this; } + /** + * Set input value + * @param string $value + * @return static $this + */ + public function setValue($value) { + $this->value = $value; + return $this; + } + public function __toString() { return (string)$this->getValue(); }