1 | <?php |
||
13 | abstract class BaseAllowedValues |
||
14 | { |
||
15 | /** |
||
16 | * @return array |
||
17 | */ |
||
18 | 3 | public static function getConstants() |
|
22 | |||
23 | /** |
||
24 | * @return array |
||
25 | */ |
||
26 | 21 | protected static function constants() |
|
30 | |||
31 | /** |
||
32 | * @param string $value |
||
33 | * |
||
34 | * @return bool |
||
35 | */ |
||
36 | 19 | public static function isValid($value) |
|
40 | } |
||
41 |