From eede7737306557dc8c168a8cb572ff34c5b375d5 Mon Sep 17 00:00:00 2001 From: Marcus Boerger Date: Sun, 18 Sep 2005 17:39:12 +0000 Subject: [PATCH] - Add missing docu --- ext/spl/spl.php | 9 +++++++++ 1 file changed, 9 insertions(+) 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 -- 2.50.1