| 1 | <?php |
||
| 4 | class ExceptionToJsonRenderer implements ExceptionRenderer |
||
| 5 | { |
||
| 6 | /** |
||
| 7 | * @param $throwable |
||
| 8 | * |
||
| 9 | * @return string |
||
| 10 | */ |
||
| 11 | public function render(\Throwable $throwable): string |
||
| 15 | |||
| 16 | /** |
||
| 17 | * @param \Throwable $throwable |
||
| 18 | * @return string |
||
| 19 | */ |
||
| 20 | private function toJson(\Throwable $throwable): string |
||
| 31 | } |
||
| 32 |