| Conditions | 2 |
| Paths | 2 |
| Total Lines | 9 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 6 |
| Changes | 0 | ||
| 1 | <?php |
||
| 19 | public function createEmptyResponse(JsonRpcRequest $fromRequest = null) : JsonRpcResponse |
||
| 20 | { |
||
| 21 | return null === $fromRequest |
||
| 22 | ? new JsonRpcResponse() |
||
| 23 | : ( |
||
| 24 | new JsonRpcResponse($fromRequest->getJsonRpc()) |
||
| 25 | ) |
||
| 26 | ->setIsNotification($fromRequest->isNotification()) |
||
| 27 | ->setId($fromRequest->getId()) |
||
| 28 | ; |
||
| 61 |