From: Marcus Boerger Date: Sun, 18 Sep 2005 17:39:12 +0000 (+0000) Subject: - Add missing docu X-Git-Tag: RELEASE_0_9_0~189 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=eede7737306557dc8c168a8cb572ff34c5b375d5;p=php - Add missing docu --- diff --git a/ext/spl/spl.php b/ext/spl/spl.php index 646842da83..a9ec7791f7 100755 --- a/ext/spl/spl.php +++ b/ext/spl/spl.php @@ -521,6 +521,7 @@ class ArrayObject implements IteratorAggregate, ArrayAccess, Countable * * @param $array the array to use. * @param $flags see setFlags(). + * @param $iterator_class class used in getIterator() */ function __construct($array, $flags = 0, $iterator_class = "ArrayIterator"); @@ -583,6 +584,14 @@ class ArrayObject implements IteratorAggregate, ArrayAccess, Countable * properties in the object. */ function count(); + + /* @param $iterator_class new class used in getIterator() + */ + function setIteratorClass($itertor_class); + + /* @return class used in getIterator() + */ + function getIteratorClass(); } /** @ingroup SPL