summaryrefslogtreecommitdiff
path: root/ext/spl/internal/recursiveiterator.inc
diff options
context:
space:
mode:
authorMarcus Boerger <helly@php.net>2004-10-29 20:58:58 +0000
committerMarcus Boerger <helly@php.net>2004-10-29 20:58:58 +0000
commitb67ca452c33a595f6f1382e32c441943a343353e (patch)
tree36cdf6a0e33dad178c84c121a4ec4ae3ac235116 /ext/spl/internal/recursiveiterator.inc
parent208a97a221055eba43430139fef0d02875e3ffbd (diff)
downloadphp-git-b67ca452c33a595f6f1382e32c441943a343353e.tar.gz
- Update docu
Diffstat (limited to 'ext/spl/internal/recursiveiterator.inc')
-rwxr-xr-xext/spl/internal/recursiveiterator.inc19
1 files changed, 19 insertions, 0 deletions
diff --git a/ext/spl/internal/recursiveiterator.inc b/ext/spl/internal/recursiveiterator.inc
index 63523ffad9..3bb0d8d0ff 100755
--- a/ext/spl/internal/recursiveiterator.inc
+++ b/ext/spl/internal/recursiveiterator.inc
@@ -1,8 +1,27 @@
<?php
+/** @file recursiveiterator.inc
+ * @ingroup Internal
+ * @brief class RecursiveIterator
+ * @author Marcus Boerger
+ * @date 2003 - 2004
+ *
+ * SPL - Standard PHP Library
+ */
+
+/**
+ * @brief Interface for recursive iteration with RecursiveIteratorIterator
+ * @author Marcus Boerger
+ * @version 1.0
+ */
interface RecursiveIterator implements Iterator
{
+ /** @return whether the current element has children
+ */
function hasChildren();
+
+ /** @return the sub iterator for the current element
+ */
function getChildren();
}