summaryrefslogtreecommitdiff
path: root/framework/Collections/TStack.php
diff options
context:
space:
mode:
Diffstat (limited to 'framework/Collections/TStack.php')
-rw-r--r--framework/Collections/TStack.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/framework/Collections/TStack.php b/framework/Collections/TStack.php
index 16bd6fca..9fd045e4 100644
--- a/framework/Collections/TStack.php
+++ b/framework/Collections/TStack.php
@@ -151,7 +151,7 @@ class TStack extends TComponent implements IteratorAggregate,Countable
*/
public function getIterator()
{
- return new TStackIterator($this->_d);
+ return new ArrayIterator( $this->_d );
}
/**
@@ -181,6 +181,7 @@ class TStack extends TComponent implements IteratorAggregate,Countable
* TStackIterator is used by TStack. It allows TStack to return a new iterator
* for traversing the items in the list.
*
+ * @deprecated Issue 264 : ArrayIterator should be used instead
* @author Qiang Xue <qiang.xue@gmail.com>
* @version $Id$
* @package System.Collections