Conditions | 4 |
Paths | 3 |
Total Lines | 13 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 4.0312 |
Changes | 0 |
1 | <?php |
||
19 | 30 | public function __construct($info) |
|
20 | { |
||
21 | 30 | if (is_object($info)) { |
|
22 | 30 | $class = get_class($info); |
|
23 | 30 | if ($class !== CheckLocktimeVerify::class && $class !== CheckSequenceVerify::class) { |
|
24 | 30 | 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 | 30 | $this->info = $info; |
|
31 | 30 | } |
|
32 | |||
41 |