1 | <?php |
||
9 | class TransactionWitnessCollection extends StaticCollection |
||
10 | { |
||
11 | /** |
||
12 | * Initialize a new collection with a list of Inputs. |
||
13 | * |
||
14 | * @param ScriptWitnessInterface[] $vScriptWitness |
||
15 | */ |
||
16 | 1278 | public function __construct(array $vScriptWitness = []) |
|
28 | |||
29 | public function __clone() |
||
38 | |||
39 | /** |
||
40 | * @return ScriptWitnessInterface[] |
||
41 | */ |
||
42 | public function all() |
||
46 | |||
47 | /** |
||
48 | * @return ScriptWitnessInterface |
||
49 | */ |
||
50 | 54 | public function current() |
|
54 | |||
55 | /** |
||
56 | * @param int $offset |
||
57 | * @return ScriptWitnessInterface |
||
58 | */ |
||
59 | 54 | public function offsetGet($offset) |
|
67 | } |
||
68 |