| Conditions | 1 |
| Paths | 1 |
| Total Lines | 6 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 5 |
| CRAP Score | 1 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 24 | 13 | public function renderVerbose(Throwable $t, ServerRequestInterface $request = null): ErrorData |
|
| 25 | { |
||
| 26 | 13 | return new ErrorData( |
|
| 27 | 13 | get_class($t) . " with message '{$t->getMessage()}' \n\nin " |
|
| 28 | 13 | . $t->getFile() . ':' . $t->getLine() . "\n\n" |
|
| 29 | 13 | . "Stack trace:\n" . $t->getTraceAsString() |
|
| 30 | ); |
||
| 33 |