1 | <?php |
||
15 | class AttributeXlsxFileIterator extends \FilterIterator implements ContainerAwareInterface |
||
16 | { |
||
17 | /** @var array */ |
||
18 | protected $attributeTypes; |
||
19 | |||
20 | /** @var array */ |
||
21 | protected $options; |
||
22 | |||
23 | /** @var XlsxFileIterator */ |
||
24 | private $innerIterator; |
||
25 | |||
26 | /** |
||
27 | * @param string $filePath |
||
28 | * @param array $options |
||
29 | */ |
||
30 | public function __construct($filePath, array $options = array()) |
||
38 | |||
39 | /** |
||
40 | * {@inheritdoc} |
||
41 | */ |
||
42 | public function accept() |
||
55 | |||
56 | /** |
||
57 | * {@inheritdoc} |
||
58 | */ |
||
59 | public function current() |
||
72 | |||
73 | /** |
||
74 | * {@inheritdoc} |
||
75 | */ |
||
76 | public function rewind() |
||
81 | |||
82 | /** |
||
83 | * {@inheritdoc} |
||
84 | */ |
||
85 | public function setContainer(ContainerInterface $container = null) |
||
90 | |||
91 | /** |
||
92 | * Returns the Excel Helper service |
||
93 | * |
||
94 | * @throws \RuntimeException |
||
95 | */ |
||
96 | protected function initializeAttributeTypes() |
||
113 | |||
114 | /** |
||
115 | * {@inheritdoc} |
||
116 | */ |
||
117 | public function __clone() |
||
121 | } |
||
122 |