mirror of
https://github.com/php/php-src.git
synced 2025-08-20 09:24:05 +02:00
13 lines
No EOL
217 B
PHP
Executable file
13 lines
No EOL
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();
|
|
}
|
|
|
|
?>
|