summaryrefslogtreecommitdiff
path: root/ext/spl/examples/parentiterator.inc
diff options
context:
space:
mode:
Diffstat (limited to 'ext/spl/examples/parentiterator.inc')
-rw-r--r--ext/spl/examples/parentiterator.inc25
1 files changed, 0 insertions, 25 deletions
diff --git a/ext/spl/examples/parentiterator.inc b/ext/spl/examples/parentiterator.inc
deleted file mode 100644
index 4b758132ac..0000000000
--- a/ext/spl/examples/parentiterator.inc
+++ /dev/null
@@ -1,25 +0,0 @@
-<?php
-
-class ParentIterator extends FilterIterator implements RecursiveIterator
-{
- function __construct(RecursiveIterator $it)
- {
- parent::__construct($it);
- }
- function accept()
- {
- return $this->it->hasChildren();
- }
-
- function hasChildren()
- {
- return $this->it->hasChildren();
- }
-
- function getChildren()
- {
- return new ParentIterator($this->it->getChildren());
- }
-}
-
-?> \ No newline at end of file