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