| Conditions | 3 |
| Paths | 2 |
| Total Lines | 10 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 3 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 34 | public function handle($server): array |
||
| 35 | { |
||
| 36 | $isTextXML = $this->isTextXml($server); |
||
| 37 | $isApplicationXML = $this->isApplicationXml($server); |
||
| 38 | |||
| 39 | if ($isTextXML || $isApplicationXML) { |
||
| 40 | return $this->getBody($server->getContent()); |
||
| 41 | } |
||
| 42 | |||
| 43 | return $this->handler->handle($server); |
||
| 44 | } |
||
| 45 | } |