summaryrefslogtreecommitdiff
path: root/framework/Collections/TQueue.php
diff options
context:
space:
mode:
authorjavalizard <>2010-04-18 04:25:03 +0000
committerjavalizard <>2010-04-18 04:25:03 +0000
commit17b1d0b7c9e02f954d8877f40bfd814b2b8adec3 (patch)
tree27e434e40175292728acaeea6545173ae25496de /framework/Collections/TQueue.php
parent623267d4377806ca3500b209f0a939c2326198de (diff)
Ensured parent::__construct calls to Base, Caching, and Collections
Diffstat (limited to 'framework/Collections/TQueue.php')
-rw-r--r--framework/Collections/TQueue.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/framework/Collections/TQueue.php b/framework/Collections/TQueue.php
index 581a7109..dc580d1e 100644
--- a/framework/Collections/TQueue.php
+++ b/framework/Collections/TQueue.php
@@ -53,6 +53,7 @@ class TQueue extends TComponent implements IteratorAggregate,Countable
*/
public function __construct($data=null)
{
+ parent::__construct();
if($data!==null)
$this->copyFrom($data);
}