Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
21 | 4 | public function jsonSerialize(): object |
|
22 | { |
||
23 | return (object) [ |
||
24 | 4 | 'jsonrpc' => Command::JSON_RPC_VERSION, |
|
25 | 'id' => Command::ID, |
||
26 | 4 | 'method' => self::METHOD, |
|
27 | 4 | 'params' => array_merge( |
|
28 | 4 | $this->getHashParam(), |
|
29 | 4 | $this->getConfirmsParam(), |
|
30 | 4 | $this->getWatchOnlyParam() |
|
31 | ) |
||
52 |