| Conditions | 4 |
| Paths | 3 |
| Total Lines | 13 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 19 | public function __construct($info) |
||
| 20 | { |
||
| 21 | if (is_object($info)) { |
||
| 22 | $class = get_class($info); |
||
| 23 | if ($class !== CheckLocktimeVerify::class && $class !== CheckSequenceVerify::class) { |
||
| 24 | throw new \RuntimeException("Invalid script info for TimeLock, must be CLTV/CSV"); |
||
| 25 | } |
||
| 26 | } else { |
||
| 27 | throw new \RuntimeException("Invalid script info for TimeLock, must be a script info object"); |
||
| 28 | } |
||
| 29 | |||
| 30 | $this->info = $info; |
||
| 31 | } |
||
| 32 | |||
| 41 |