1 | <?php |
||
8 | class DbTables implements \ArrayAccess , \SeekableIterator , \Countable |
||
9 | { |
||
10 | |||
11 | /** |
||
12 | * @type DbTable[] |
||
13 | */ |
||
14 | private $objDbTables = array (); |
||
15 | |||
16 | private $position = 0; |
||
17 | |||
18 | public function offsetExists ( $offset ) |
||
22 | |||
23 | public function offsetGet ( $offset ) |
||
27 | |||
28 | public function offsetSet ( $offset , $value ) |
||
32 | |||
33 | public function offsetUnset ( $offset ) |
||
39 | |||
40 | public function count () |
||
44 | |||
45 | /** |
||
46 | * convert array |
||
47 | */ |
||
48 | public function toArrayFileName () |
||
63 | |||
64 | /* Method required for SeekableIterator interface */ |
||
65 | |||
66 | public function seek ( $position ) |
||
76 | |||
77 | /* Methods required for Iterator interface */ |
||
78 | |||
79 | public function rewind () |
||
83 | |||
84 | public function current () |
||
90 | |||
91 | public function key () |
||
97 | |||
98 | public function next () |
||
102 | |||
103 | public function valid () |
||
109 | } |