]> granicus.if.org Git - php/commitdiff
- Add missing docu
authorMarcus Boerger <helly@php.net>
Sun, 18 Sep 2005 17:39:12 +0000 (17:39 +0000)
committerMarcus Boerger <helly@php.net>
Sun, 18 Sep 2005 17:39:12 +0000 (17:39 +0000)
ext/spl/spl.php

index 646842da835b3566aeee36c0e5151d51c6432eb5..a9ec7791f72767257fb535261882f69635cd3262 100755 (executable)
@@ -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