mirror of
https://github.com/php/php-src.git
synced 2026-03-28 18:22:42 +01:00
13 lines
217 B
PHP
Executable File
13 lines
217 B
PHP
Executable File
<?php
|
|
|
|
/** \ingroup SPL
|
|
* \brief Interface to access inner iterator of iterator wrappers
|
|
*/
|
|
interface OuterIterator extends Iterator
|
|
{
|
|
/** \return inner iterator
|
|
*/
|
|
abstract function getInnerIterator();
|
|
}
|
|
|
|
?>
|