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 | 1350 | public function __construct(array $inputs = []) |
|
25 | |||
26 | 126 | public function __clone() |
|
35 | |||
36 | /** |
||
37 | * @return TransactionInputInterface[] |
||
38 | */ |
||
39 | 330 | public function all() |
|
43 | |||
44 | /** |
||
45 | * @return TransactionInputInterface |
||
46 | */ |
||
47 | 72 | public function current() |
|
51 | |||
52 | /** |
||
53 | * @param int $offset |
||
54 | * @return TransactionInputInterface |
||
55 | */ |
||
56 | 822 | public function offsetGet($offset) |
|
64 | } |
||
65 |