Total Complexity | 4 |
Total Lines | 21 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
5 | final class RawTransaction implements \JsonSerializable |
||
6 | { |
||
7 | private $txid; |
||
8 | private $vout; |
||
9 | private $scriptPubKey; |
||
10 | private $redeemScript; |
||
11 | |||
12 | 9 | public function __construct(string $txid, int $vout, ?string $scriptPubKey, ?string $redeemScript) |
|
18 | 9 | } |
|
19 | |||
20 | 5 | public function jsonSerialize(): object |
|
29 |