| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 7 |
| CRAP Score | 1 |
| Changes | 1 | ||
| Bugs | 1 | Features | 0 |
| 1 | <?php |
||
| 22 | 1 | public function renderVerbose(Throwable $t, ServerRequestInterface $request = null): ErrorData |
|
| 23 | { |
||
| 24 | 1 | return new ErrorData('', [ |
|
| 25 | 1 | 'X-Error-Type' => $t::class, |
|
| 26 | 1 | 'X-Error-Message' => $t->getMessage(), |
|
| 27 | 1 | 'X-Error-Code' => (string) $t->getCode(), |
|
| 28 | 1 | 'X-Error-File' => $t->getFile(), |
|
| 29 | 1 | 'X-Error-Line' => (string) $t->getLine(), |
|
| 30 | 1 | ]); |
|
| 33 |