1 | <?php |
||
11 | class Actions extends BaseCollection |
||
12 | { |
||
13 | /** @var IAction[] */ |
||
14 | protected $components = []; |
||
15 | |||
16 | /** |
||
17 | * @return IAction |
||
18 | * @throws LogicException |
||
19 | */ |
||
20 | public function current() |
||
29 | |||
30 | /** |
||
31 | * @param int|null $offset |
||
32 | * @param IAction $value |
||
33 | * |
||
34 | * @throws InvalidArgumentException |
||
35 | */ |
||
36 | 6 | public function offsetSet($offset, $value) |
|
42 | |||
43 | /** |
||
44 | * @param int $offset |
||
45 | * |
||
46 | * @return IAction|null |
||
47 | * @throws LogicException |
||
48 | */ |
||
49 | public function offsetGet($offset) |
||
58 | |||
59 | /** |
||
60 | * @return Actions |
||
61 | */ |
||
62 | 1 | public function duplicate(): Actions |
|
73 | |||
74 | } |
||
75 |