15 lines
231 B
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();
|
|
}
|