getInnerIterator()->isDot(); } /** @return whether the current entry is a directory */ function hasChildren() { return $this->getInnerIterator()->hasChildren(); } /** @return the current subdirectory as a new DirectoryFilterDots instance. */ function getChildren() { return new DirectoryFilterDots($this->getInnerIterator()->getPathname()); } /** @return the current entries path name */ function key() { return $this->getInnerIterator()->getPathname(); } } ?>