1 | <?php |
||
5 | final class JsonRpcNotificationResponse implements JsonRpcResponseInterface |
||
6 | { |
||
7 | /** {@inheritdoc} */ |
||
8 | 1 | public function getVersion() |
|
12 | |||
13 | /** {@inheritdoc} */ |
||
14 | 2 | public function isSuccessful() |
|
18 | |||
19 | /** {@inheritdoc} */ |
||
20 | 1 | public function getError() |
|
24 | |||
25 | /** {@inheritdoc} */ |
||
26 | 1 | public function getBody() |
|
30 | |||
31 | /** {@inheritdoc} */ |
||
32 | public function getId() |
||
36 | |||
37 | /** |
||
38 | * {@inheritdoc} |
||
39 | * @throws \LogicException |
||
40 | */ |
||
41 | public function jsonSerialize() |
||
45 | } |
||
46 |