1 | <?php |
||
8 | class TransactionOutputCollection extends StaticCollection |
||
9 | { |
||
10 | |||
11 | /** |
||
12 | * Initialize a new collection with a list of outputs. |
||
13 | * |
||
14 | * @param TransactionOutputInterface[] $outputs |
||
15 | */ |
||
16 | 1320 | public function __construct(array $outputs = []) |
|
26 | |||
27 | 120 | public function __clone() |
|
36 | |||
37 | /** |
||
38 | * @return TransactionOutputInterface[] |
||
39 | */ |
||
40 | 108 | public function all() |
|
44 | |||
45 | /** |
||
46 | * @return TransactionOutputInterface |
||
47 | */ |
||
48 | public function current() |
||
52 | 12 | ||
53 | /** |
||
54 | * @param int $offset |
||
55 | 108 | * @return TransactionOutputInterface |
|
56 | */ |
||
57 | public function offsetGet($offset) |
||
65 | } |
||
66 |