1 | <?php |
||
5 | trait DumpTrait |
||
6 | { |
||
7 | /** |
||
8 | * Convert the object into json. |
||
9 | * |
||
10 | * @return array |
||
11 | */ |
||
12 | 5 | public function jsonSerialize(): array |
|
16 | |||
17 | /** |
||
18 | * Dump object to array. |
||
19 | * |
||
20 | * @return array |
||
21 | */ |
||
22 | 1 | public function __toArray(): array |
|
26 | |||
27 | 2 | public function __toXML() |
|
38 | |||
39 | 2 | protected function composeXML($data, &$xml): void |
|
54 | } |
||
55 |