From 9be85680cfb74fbb5a566822aeb7d38f7c2dc8ca Mon Sep 17 00:00:00 2001 From: uacaman <> Date: Tue, 10 May 2011 20:02:10 +0000 Subject: Issue 264 : Changed Collection to use PHP native ArrayIterator --- framework/Collections/TQueue.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'framework/Collections/TQueue.php') diff --git a/framework/Collections/TQueue.php b/framework/Collections/TQueue.php index dc580d1e..469be018 100644 --- a/framework/Collections/TQueue.php +++ b/framework/Collections/TQueue.php @@ -152,7 +152,7 @@ class TQueue extends TComponent implements IteratorAggregate,Countable */ public function getIterator() { - return new TQueueIterator($this->_d); + return new ArrayIterator( $this->_d ); } /** -- cgit v1.2.3