Total Complexity | 6 |
Total Lines | 37 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
26 | class Value |
||
27 | { |
||
28 | /** |
||
29 | * Check if a value is an array of options |
||
30 | * |
||
31 | * @param mixed $xValue |
||
32 | * |
||
33 | * @return bool |
||
34 | */ |
||
35 | public static function containsOptions($xValue): bool |
||
49 | } |
||
50 | |||
51 | /** |
||
52 | * Get an array of options names |
||
53 | * |
||
54 | * @param string $sName |
||
55 | * |
||
56 | * @return array |
||
57 | */ |
||
58 | public static function explodeName(string $sName): array |
||
65 |