]> granicus.if.org Git - php/commitdiff
- More bodies
authorMarcus Boerger <helly@php.net>
Tue, 21 Feb 2006 21:22:39 +0000 (21:22 +0000)
committerMarcus Boerger <helly@php.net>
Tue, 21 Feb 2006 21:22:39 +0000 (21:22 +0000)
ext/spl/spl.php

index 100923ab0dd803c41c68b2e302160676a49e57ba..cf4629fbb6f85875444f9ce06738807daff8b889 100755 (executable)
@@ -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