summaryrefslogtreecommitdiff
path: root/ext/spl/spl.php
diff options
context:
space:
mode:
authorMarcus Boerger <helly@php.net>2006-03-05 17:39:49 +0000
committerMarcus Boerger <helly@php.net>2006-03-05 17:39:49 +0000
commit7dc322754a698bb716ebb6fcdfb8b8842e12d918 (patch)
treeac0576836a87c5a3187b0d817bbe490b5501f5e1 /ext/spl/spl.php
parent41de805a9d43ed9a6dbe351e5ed1aa1f52cb9641 (diff)
downloadphp-git-7dc322754a698bb716ebb6fcdfb8b8842e12d918.tar.gz
- Fix issues with not/double calling of constructors of SPL iterators
- Fix issues with info-class/file-class in SPL directory handling classes - Add SimpleXMLElement::count() - Drop erroneous RecursiveDirectoryIterator::getSubPathInfo() - Drop dead code - Add tests - Update docu
Diffstat (limited to 'ext/spl/spl.php')
-rwxr-xr-xext/spl/spl.php11
1 files changed, 2 insertions, 9 deletions
diff --git a/ext/spl/spl.php b/ext/spl/spl.php
index 4ba58fceb4..f704e044ba 100755
--- a/ext/spl/spl.php
+++ b/ext/spl/spl.php
@@ -887,8 +887,8 @@ class SplFileInfo
*/
function setFileClass(string class_name = "SplFileObject");
- /** @param class_name name of class used with getFileInfo(), getPathInfo(),
- * getSubPathInfo(). Must be derived from SplFileInfo.
+ /** @param class_name name of class used with getFileInfo(), getPathInfo().
+ * Must be derived from SplFileInfo.
*/
function setInfoClass(string class_name = "SplFileInfo");
}
@@ -971,13 +971,6 @@ class RecursiveDirectoryIterator extends DirectoryIterator implements RecursiveI
/** @return the current sub path
*/
function getSubPathname();
-
- /** @return SplFileInfo created for the current sub path
- * @param class_name name of class to instantiate
- * @see SplFileInfo::setInfoClass()
- */
- function getSubPathInfo(string $class_name = NULL);
-
}
/** @ingroup SPL