summaryrefslogtreecommitdiffstats
path: root/vendor/ipl/html/src/Contract/FormElementDecorator.php
blob: 1e862bb999ad5ad087328b326731327060b04406 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?php

namespace ipl\Html\Contract;

use ipl\Html\ValidHtml;

/**
 * Representation of form element decorators
 */
interface FormElementDecorator extends ValidHtml
{
    /**
     * Decorate the given form element
     *
     * @param FormElement $formElement
     */
    public function decorate(FormElement $formElement);
}