| 1 | <?php |
||
| 14 | abstract class AbstractFileIterator implements \Iterator |
||
| 15 | { |
||
| 16 | /** @var string */ |
||
| 17 | protected $filePath; |
||
| 18 | |||
| 19 | /** @var array */ |
||
| 20 | protected $options; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @param string $filePath |
||
| 24 | * @param array $options |
||
| 25 | */ |
||
| 26 | public function __construct($filePath, array $options = array()) |
||
| 33 | |||
| 34 | /** |
||
| 35 | * Sets the default options |
||
| 36 | * |
||
| 37 | * @param OptionsResolver $resolver |
||
| 38 | */ |
||
| 39 | protected function setDefaultOptions(OptionsResolver $resolver) |
||
| 42 | } |
||
| 43 |