1 | <?php |
||
8 | class TransactionInputCollection extends StaticCollection |
||
9 | { |
||
10 | /** |
||
11 | * Initialize a new collection with a list of Inputs. |
||
12 | * |
||
13 | * @param TransactionInputInterface[] $inputs |
||
14 | */ |
||
15 | 1344 | public function __construct(array $inputs = []) |
|
25 | |||
26 | 120 | public function __clone() |
|
35 | |||
36 | /** |
||
37 | * @return TransactionInputInterface[] |
||
38 | */ |
||
39 | public function all() |
||
43 | |||
44 | /** |
||
45 | * @return TransactionInputInterface |
||
46 | */ |
||
47 | public function current() |
||
51 | 816 | ||
52 | 12 | /** |
|
53 | * @param int $offset |
||
54 | * @return TransactionInputInterface |
||
55 | 804 | */ |
|
56 | public function offsetGet($offset) |
||
64 | } |
||
65 |