nulib-spout/openspout3/src/Reader/IteratorInterface.php

15 lines
231 B
PHP

<?php
namespace OpenSpout\Reader;
/**
* Interface IteratorInterface.
*/
interface IteratorInterface extends \Iterator
{
/**
* Cleans up what was created to iterate over the object.
*/
public function end();
}