From: Marcus Boerger Date: Tue, 21 Feb 2006 21:22:39 +0000 (+0000) Subject: - More bodies X-Git-Tag: RELEASE_1_2~127 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=de27da1c85491de575a694465b9122d47828a4b5;p=php - More bodies --- diff --git a/ext/spl/spl.php b/ext/spl/spl.php index 100923ab0d..cf4629fbb6 100755 --- a/ext/spl/spl.php +++ b/ext/spl/spl.php @@ -743,7 +743,7 @@ class ArrayIterator implements SeekableIterator, ArrayAccess, Countable function setFlags($flags) {/**/} /** - * @ return current flags + * @return current flags */ function getFlags() {/**/} @@ -967,6 +967,12 @@ class DirectoryIterator extends SplFileInfo implements Iterator */ function __construct($path) {/**/} + /** @copydoc Iterator::rewind */ + function rewind() {/**/} + + /** @copydoc Iterator::valid */ + function valid() {/**/} + /** @return index of entry */ function key() {/**/} @@ -975,6 +981,9 @@ class DirectoryIterator extends SplFileInfo implements Iterator */ function current() {/**/} + /** @copydoc Iterator::next */ + function next() {/**/} + /** @return Whether the current entry is either '.' or '..'. */ function isDot() {/**/} @@ -1065,6 +1074,21 @@ class SimpleXMLIterator extends SimpleXMLElement implements RecursiveIterator, C /** @return number of elements/attributes seen with foreach() */ function count() {/**/} + + /** @copydoc Iterator::rewind */ + function rewind() {/**/} + + /** @copydoc Iterator::valid */ + function valid() {/**/} + + /** @copydoc Iterator::current */ + function current() {/**/} + + /** @copydoc Iterator::key */ + function key() {/**/} + + /** @copydoc Iterator::next */ + function next() {/**/} } /** @ingroup SPL