1 | <?php |
||
8 | class ScriptWitness extends StaticCollection |
||
9 | { |
||
10 | /** |
||
11 | * ScriptWitness constructor. |
||
12 | * @param BufferInterface[] $sigValues |
||
13 | */ |
||
14 | public function __construct(array $sigValues) |
||
24 | |||
25 | public function __clone() |
||
34 | |||
35 | /** |
||
36 | * @return BufferInterface |
||
37 | */ |
||
38 | public function current() |
||
42 | |||
43 | /** |
||
44 | * @param int $offset |
||
45 | * @return BufferInterface |
||
46 | */ |
||
47 | public function offsetGet($offset) |
||
55 | |||
56 | /** |
||
57 | * @param int $start |
||
58 | * @param int $length |
||
59 | * @return ScriptWitness |
||
60 | */ |
||
61 | public function slice($start, $length) |
||
71 | } |
||
72 |