AutorÃa | Ultima modificación | Ver Log |
<?phpdeclare(strict_types=1);namespace OpenSpout\Reader;use Iterator;use OpenSpout\Common\Entity\Row;/*** @extends Iterator<Row>*/interface RowIteratorInterface extends Iterator{public function current(): ?Row;}