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

namespace ipl\Html\Contract;

interface ValueCandidates
{
    /**
     * Get value candidates of this element
     *
     * @return array
     */
    public function getValueCandidates();

    /**
     * Set value candidates of this element
     *
     * @param array $values
     *
     * @return $this
     */
    public function setValueCandidates(array $values);
}