InputFile now inherits from InputItem

This commit is contained in:
Simon Sessingø
2016-04-15 23:10:49 +02:00
parent 17adfb8aa4
commit 7fdeef74d6
5 changed files with 6 additions and 28 deletions
+1 -1
View File
@@ -7,7 +7,7 @@ class InputItem {
protected $name;
protected $value;
public function __construct($index, $value) {
public function __construct($index, $value = null) {
$this->index = $index;
$this->value = $value;