| Conditions | 1 |
| Paths | 1 |
| Total Lines | 13 |
| Code Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 32 | public function render(): JsonResponse |
||
| 33 | { |
||
| 34 | return response()->json( |
||
| 35 | [ |
||
| 36 | 'error' => [ |
||
| 37 | 'code' => $this->statusCode, |
||
| 38 | 'message' => $this->statusMessage, |
||
| 39 | 'type' => get_class($this->exception), |
||
| 40 | 'file' => $this->exception->getFile(), |
||
| 41 | 'line' => $this->exception->getLine(), |
||
| 42 | 'trace' => $this->formatTrace($this->exception->getTrace()) |
||
| 43 | ]], |
||
| 44 | $this->responseCode |
||
| 45 | ); |
||
| 99 |