| Conditions | 1 |
| Paths | 1 |
| Total Lines | 7 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 16 | public function render(Throwable $t, ServerRequestInterface $request = null): string |
||
| 17 | { |
||
| 18 | $out = '<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>'; |
||
| 19 | $out .= "<error>\n"; |
||
| 20 | $out .= $this->tag('message', 'An internal server error occurred'); |
||
| 21 | $out .= '</error>'; |
||
| 22 | return $out; |
||
| 23 | } |
||
| 49 |