summaryrefslogtreecommitdiffstats
path: root/library/vendor/ipl/Html/src/FormElement/FileElement.php
blob: 88aeb8c25cf3ed499c23aae87f9fd68e150ad8e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?php

namespace reportingipl\Html\FormElement;

use ipl\Html\FormElement\InputElement;

class FileElement extends InputElement
{
    protected $type = 'file';

    public function setValue($value)
    {
        return $this;
    }
}