| Current Path : /var/www/html/encuestas.sumar.com.py/lib/openspout/src/Reader/ |
| Current File : /var/www/html/encuestas.sumar.com.py/lib/openspout/src/Reader/RowIteratorInterface.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;
}