Proyectos de Subversion Moodle

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 efrain 1
<?php
2
 
3
declare(strict_types=1);
4
 
5
namespace OpenSpout\Reader;
6
 
7
use Iterator;
8
use OpenSpout\Common\Entity\Row;
9
 
10
/**
11
 * @extends Iterator<Row>
12
 */
13
interface RowIteratorInterface extends Iterator
14
{
15
    public function current(): ?Row;
16
}