function setFlags($flags) {/**/}
/**
- * @ return current flags
+ * @return current flags
*/
function getFlags() {/**/}
*/
function __construct($path) {/**/}
+ /** @copydoc Iterator::rewind */
+ function rewind() {/**/}
+
+ /** @copydoc Iterator::valid */
+ function valid() {/**/}
+
/** @return index of entry
*/
function key() {/**/}
*/
function current() {/**/}
+ /** @copydoc Iterator::next */
+ function next() {/**/}
+
/** @return Whether the current entry is either '.' or '..'.
*/
function isDot() {/**/}
/** @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