Total Complexity | 2 |
Total Lines | 21 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
7 | final class ImportPrivKey implements Command |
||
8 | { |
||
9 | private const METHOD = 'importprivkey'; |
||
10 | private $privateKey; |
||
11 | private $label; |
||
12 | private $rescan; |
||
13 | |||
14 | 3 | public function __construct(string $privateKey, string $label = '', bool $rescan = true) |
|
19 | 3 | } |
|
20 | |||
21 | 3 | public function jsonSerialize(): object |
|
31 |