1 | <?php |
||
7 | abstract class AbstractExtractor implements ExtractorInterface |
||
8 | { |
||
9 | protected $stmt; |
||
10 | |||
11 | protected $position; |
||
12 | |||
13 | protected $data; |
||
14 | |||
15 | public function extract() |
||
26 | |||
27 | public function current() |
||
31 | |||
32 | public function key() |
||
36 | |||
37 | public function next() |
||
41 | |||
42 | public function rewind() |
||
46 | |||
47 | public function valid() |
||
51 | } |
||
52 |