| Conditions | 2 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 6 |
| Changes | 0 | ||
| 1 | <?php |
||
| 49 | public function createErrorResponse(\Exception $exception, JsonRpcRequest $fromRequest = null) : JsonRpcResponse |
||
| 50 | { |
||
| 51 | return $this->createEmptyResponse($fromRequest) |
||
| 52 | ->setIsNotification(false) |
||
| 53 | ->setError( |
||
| 54 | $exception instanceof JsonRpcExceptionInterface |
||
| 55 | ? $exception |
||
| 56 | : new JsonRpcInternalErrorException($exception) |
||
| 57 | ) |
||
| 61 |