1 | <?php |
||
5 | final class RollCollection implements \Iterator, \ArrayAccess |
||
6 | { |
||
7 | private $roll_array; |
||
8 | |||
9 | 34 | public function __construct(array $a_roll_content_array) |
|
24 | |||
25 | 34 | public function current() |
|
29 | |||
30 | 34 | public function next() |
|
34 | |||
35 | public function key() |
||
39 | |||
40 | 34 | public function valid() |
|
44 | |||
45 | 34 | public function rewind() |
|
49 | |||
50 | 22 | public function offsetExists($offset) |
|
54 | |||
55 | 22 | public function offsetGet($offset) |
|
59 | |||
60 | public function offsetSet($offset, $value) |
||
64 | |||
65 | public function offsetUnset($offset) |
||
69 | } |
||
70 |