| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 30 | public function __construct($hash, $index, $value = null, AddressInterface $address = null, ScriptInterface $scriptPubKey = null, $path = null, ScriptInterface $redeemScript = null) { |
||
| 31 | $this->hash = $hash; |
||
| 32 | $this->index = $index; |
||
| 33 | $this->value = $value; |
||
| 34 | $this->address = $address; |
||
| 35 | $this->scriptPubKey = $scriptPubKey; |
||
| 36 | $this->path = $path; |
||
| 37 | $this->redeemScript = $redeemScript; |
||
| 38 | } |
||
| 39 | } |
||
| 40 |