| Current Path : /var/www/html/clima.sumar.com.py/lib/openspout/src/Reader/ |
| Current File : /var/www/html/clima.sumar.com.py/lib/openspout/src/Reader/SheetIteratorInterface.php |
<?php
declare(strict_types=1);
namespace OpenSpout\Reader;
use Iterator;
/**
* @template T of SheetInterface
*
* @extends Iterator<T>
*/
interface SheetIteratorInterface extends Iterator
{
/**
* @return T of SheetInterface
*/
public function current(): SheetInterface;
}