mediawiki-extensions-Echo/includes/iterator/NotRecursiveIterator.php

20 lines
468 B
PHP
Raw Normal View History

<?php
/**
* Wraps a non-recursive iterator with methods to be recursive
* without children.
*
* Alternatively wraps a recursive iterator to prevent recursing deeper
* than the wrapped iterator.
*/
class EchoNotRecursiveIterator extends EchoIteratorDecorator implements RecursiveIterator {
public function hasChildren() {
return false;
}
public function getChildren() {
// @phan-suppress-next-line PhanTypeMismatchReturn Never called
return null;
}
}