1 | <?php |
||
17 | abstract class Database extends StreamCollector implements StreamCollectorInterface, BarRenderableInterface |
||
18 | { |
||
19 | /** |
||
20 | * The path in the final json |
||
21 | * @example |
||
22 | * path /aa/bb |
||
23 | * will be transformed to |
||
24 | * { |
||
25 | * aa : { |
||
26 | * bb: <VALUE OF RESOLVE> |
||
27 | * } |
||
28 | * } |
||
29 | * @return mixed |
||
30 | */ |
||
31 | 2 | public function getPath() |
|
35 | |||
36 | /** |
||
37 | * @return RendererInterface |
||
38 | * |
||
39 | * @throws \RuntimeException |
||
40 | */ |
||
41 | public function getRenderer() |
||
45 | } |
||
46 |