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