blob: 1cd2d6fd4205795669af12c532b0b3cedf6af9d0 (
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<int, mixed>
*/
public function getValueCandidates();
/**
* Set value candidates of this element
*
* @param array<int, mixed> $values
*
* @return $this
*/
public function setValueCandidates(array $values);
}
|