| Conditions | 2 |
| Paths | 2 |
| Total Lines | 10 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 6 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php declare(strict_types = 1); |
||
| 23 | public function render(Throwable $e) |
||
| 24 | { |
||
| 25 | if ($e instanceof Error) { |
||
| 26 | $e = new ErrorException( |
||
| 27 | $e->getMessage(), 0, $e->getCode(), $e->getFile(), $e->getLine(), $e->getPrevious() |
||
| 28 | ); |
||
| 29 | } |
||
| 30 | |||
| 31 | (new Application())->renderException($e, new ConsoleOutput()); |
||
| 32 | } |
||
| 33 | |||
| 34 | } |