1 | <?php |
||
10 | abstract class AdapterAbstract implements AdapterInterface |
||
11 | { |
||
12 | private $options; |
||
13 | |||
14 | /** |
||
15 | * @param Options $options |
||
16 | */ |
||
17 | 205 | protected function setOptions(Options $options): void |
|
21 | |||
22 | /** |
||
23 | * @return Options |
||
24 | */ |
||
25 | 190 | protected function getOptions(): Options |
|
29 | |||
30 | /** |
||
31 | * Data cannot contain keys like idColumnName, levelColumnName, ... |
||
32 | * |
||
33 | * @param array $data |
||
34 | * |
||
35 | * @return array |
||
36 | */ |
||
37 | 11 | protected function cleanData(array $data): array |
|
55 | |||
56 | /** |
||
57 | * @param array $data |
||
58 | * |
||
59 | * @return NodeInfo |
||
60 | */ |
||
61 | 76 | protected function _buildNodeInfoObject(array $data) |
|
79 | } |
||
80 |