Total Complexity | 7 |
Total Lines | 37 |
Duplicated Lines | 0 % |
Changes | 3 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
7 | class XML implements Handler, Advancer |
||
8 | { |
||
9 | private Handler $handler; |
||
10 | |||
11 | public function getBody($content): array |
||
17 | } |
||
18 | |||
19 | public function next(Handler $handler): void |
||
22 | } |
||
23 | |||
24 | private function isTextXml($server): bool |
||
27 | } |
||
28 | |||
29 | private function isApplicationXml($server): bool |
||
32 | } |
||
33 | |||
34 | public function handle($server): array |
||
44 | } |
||
45 | } |