| 1 |
<?php |
| 2 |
|
| 3 |
declare (strict_types=1); |
| 4 |
namespace FluentCart\OpenSpout\Reader; |
| 5 |
|
| 6 |
/** |
| 7 |
* Interface IteratorInterface. |
| 8 |
*/ |
| 9 |
interface SheetIteratorInterface extends IteratorInterface |
| 10 |
{ |
| 11 |
/** |
| 12 |
* Cleans up what was created to iterate over the object. |
| 13 |
*/ |
| 14 |
#[\ReturnTypeWillChange] |
| 15 |
public function end(); |
| 16 |
/** |
| 17 |
* @return null|SheetInterface |
| 18 |
*/ |
| 19 |
#[\ReturnTypeWillChange] |
| 20 |
public function current(); |
| 21 |
} |
| 22 |
|