Files
kalsport.pl/modules/x13import/tools/Spout/Reader/IteratorInterface.php
2024-11-05 12:22:50 +01:00

19 lines
289 B
PHP

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