1 | <?php |
||
12 | class RowIteratorFactory |
||
13 | { |
||
14 | /** |
||
15 | * @var string |
||
16 | */ |
||
17 | protected $iteratorClass; |
||
18 | |||
19 | /** |
||
20 | * Constructor |
||
21 | * |
||
22 | * @param string $iteratorClass the class for row iterators |
||
23 | */ |
||
24 | public function __construct($iteratorClass) |
||
28 | |||
29 | /** |
||
30 | * Creates a row iterator for the XML given worksheet file |
||
31 | * |
||
32 | * @param string $path the path to the extracted XML worksheet file |
||
33 | * @param array $options options specific to the format |
||
34 | * |
||
35 | * @return RowIterator |
||
36 | */ |
||
37 | public function create($path, array $options) |
||
41 | |||
42 | } |
||
43 |