diff options
Diffstat (limited to 'framework/Collections/TQueue.php')
-rw-r--r-- | framework/Collections/TQueue.php | 2 |
1 files changed, 1 insertions, 1 deletions
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 );
}
/**
|