| Current Path : /home/webg5288/www/laravel_kendal/vendor/openspout/openspout/src/Reader/ |
| Current File : /home/webg5288/www/laravel_kendal/vendor/openspout/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;
}