Browse Source

- More bodies

migration/RELEASE_1_0_0
Marcus Boerger 21 years ago
parent
commit
de27da1c85
  1. 26
      ext/spl/spl.php

26
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

Loading…
Cancel
Save