summaryrefslogtreecommitdiffstats
path: root/library/vendor
diff options
context:
space:
mode:
Diffstat (limited to 'library/vendor')
-rw-r--r--library/vendor/ipl/Html/src/FormElement/FileElement.php15
1 files changed, 15 insertions, 0 deletions
diff --git a/library/vendor/ipl/Html/src/FormElement/FileElement.php b/library/vendor/ipl/Html/src/FormElement/FileElement.php
new file mode 100644
index 0000000..88aeb8c
--- /dev/null
+++ b/library/vendor/ipl/Html/src/FormElement/FileElement.php
@@ -0,0 +1,15 @@
+<?php
+
+namespace reportingipl\Html\FormElement;
+
+use ipl\Html\FormElement\InputElement;
+
+class FileElement extends InputElement
+{
+ protected $type = 'file';
+
+ public function setValue($value)
+ {
+ return $this;
+ }
+}