spout/src/Spout/Reader/IteratorInterface.php
2017-09-06 00:33:43 +02:00

17 lines
257 B
PHP

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