helly           Tue Feb 21 21:22:39 2006 UTC

  Modified files:              
    /php-src/ext/spl    spl.php 
  Log:
  - More bodies
  
http://cvs.php.net/viewcvs.cgi/php-src/ext/spl/spl.php?r1=1.69&r2=1.70&diff_format=u
Index: php-src/ext/spl/spl.php
diff -u php-src/ext/spl/spl.php:1.69 php-src/ext/spl/spl.php:1.70
--- php-src/ext/spl/spl.php:1.69        Tue Feb 21 21:19:34 2006
+++ php-src/ext/spl/spl.php     Tue Feb 21 21:22:39 2006
@@ -743,7 +743,7 @@
        function setFlags($flags) {/**/}
 
        /**
-        * @ return current flags
+        * @return current flags
         */
        function getFlags() {/**/}
 
@@ -967,6 +967,12 @@
         */
        function __construct($path) {/**/}
 
+       /** @copydoc Iterator::rewind */
+       function rewind() {/**/}
+       
+       /** @copydoc Iterator::valid */
+       function valid() {/**/}
+       
        /** @return index of entry
         */
        function key() {/**/}
@@ -975,6 +981,9 @@
         */
        function current() {/**/}
 
+       /** @copydoc Iterator::next */
+       function next() {/**/}
+
        /** @return Whether the current entry is either '.' or '..'.
         */
        function isDot() {/**/} 
@@ -1065,6 +1074,21 @@
        /** @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

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to