17 lines
233 B
PHP
17 lines
233 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace OpenSpout\Reader;
|
|
|
|
use Iterator;
|
|
use OpenSpout\Common\Entity\Row;
|
|
|
|
/**
|
|
* @extends Iterator<Row>
|
|
*/
|
|
interface RowIteratorInterface extends Iterator
|
|
{
|
|
public function current(): ?Row;
|
|
}
|