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 d8b692d1..1eacfb0a 100644 --- a/framework/Collections/TQueue.php +++ b/framework/Collections/TQueue.php @@ -141,7 +141,7 @@ class TQueue extends TComponent implements IteratorAggregate,Countable public function enqueue($item)
{
++$this->_c;
- array_push($this->_d,$item);
+ $this->_d[] = $item;
}
/**
|