1 | <?php |
||
10 | abstract class AbstractOptionsOutput implements OptionsOutputInterface |
||
11 | { |
||
12 | /** |
||
13 | * Removes recursively array elements that have a null value. |
||
14 | * |
||
15 | * @param ChartOptionsInterface|array $options ChartOptions instance or an array of options passed by reference |
||
16 | */ |
||
17 | public function removeRecursivelyNullValue(&$options) |
||
29 | |||
30 | /** |
||
31 | * Removes recursively array elements that have an empty array. |
||
32 | * |
||
33 | * @param array $options Array of options passed by reference |
||
34 | */ |
||
35 | public function removeRecursivelyEmptyArray(&$options) |
||
47 | |||
48 | /** |
||
49 | * Renames recursively array keys to remove prefixes and suffixes "\x00". They come from conversion of class with |
||
50 | * protected properties to an array. |
||
51 | * |
||
52 | * @param array $options Array of options |
||
53 | * |
||
54 | * @return array Array of options with new keys |
||
55 | */ |
||
56 | public function renameRecursivelyKeys($options) |
||
79 | } |
||
80 |