1 | <?php |
||
15 | class Binding |
||
16 | { |
||
17 | /** |
||
18 | * Left binding |
||
19 | */ |
||
20 | const LEFT = 'Left'; |
||
21 | |||
22 | /** |
||
23 | * Right binding |
||
24 | */ |
||
25 | const RIGHT = 'Right'; |
||
26 | |||
27 | /** |
||
28 | * Available binding values |
||
29 | * |
||
30 | * @var string[] $values |
||
31 | */ |
||
32 | private static $values = [ |
||
33 | self::LEFT, |
||
34 | self::RIGHT |
||
35 | ]; |
||
36 | |||
37 | /** |
||
38 | * Get available binding values |
||
39 | * |
||
40 | * @return string[] |
||
41 | */ |
||
42 | 2 | public static function values() |
|
46 | } |
||
47 |