| Total Complexity | 2 |
| Total Lines | 20 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 7 | final class GetBalance implements Command |
||
| 8 | { |
||
| 9 | private const METHOD = 'getbalance'; |
||
| 10 | private $account = '*'; |
||
| 11 | private $minConf; |
||
| 12 | private $includeWatchOnly; |
||
| 13 | |||
| 14 | 3 | public function __construct(int $minConf = 1, bool $includeWatchOnly = false) |
|
| 18 | 3 | } |
|
| 19 | |||
| 20 | 3 | public function jsonSerialize(): object |
|
| 30 |