MediaWiki REL1_34
NotRecursiveIterator.php
Go to the documentation of this file.
1<?php
27class NotRecursiveIterator extends IteratorDecorator implements RecursiveIterator {
28 public function hasChildren() {
29 return false;
30 }
31
32 public function getChildren() {
33 return null;
34 }
35}