From 17b1d0b7c9e02f954d8877f40bfd814b2b8adec3 Mon Sep 17 00:00:00 2001 From: javalizard <> Date: Sun, 18 Apr 2010 04:25:03 +0000 Subject: Ensured parent::__construct calls to Base, Caching, and Collections --- framework/Caching/TCache.php | 3 +++ 1 file changed, 3 insertions(+) (limited to 'framework/Caching/TCache.php') diff --git a/framework/Caching/TCache.php b/framework/Caching/TCache.php index 02a4ae3b..880161af 100644 --- a/framework/Caching/TCache.php +++ b/framework/Caching/TCache.php @@ -347,6 +347,7 @@ class TFileCacheDependency extends TCacheDependency */ public function __construct($fileName) { + parent::__construct(); $this->setFileName($fileName); } @@ -418,6 +419,7 @@ class TDirectoryCacheDependency extends TCacheDependency */ public function __construct($directory) { + parent::__construct(); $this->setDirectory($directory); } @@ -572,6 +574,7 @@ class TGlobalStateCacheDependency extends TCacheDependency */ public function __construct($name) { + parent::__construct(); $this->setStateName($name); } -- cgit v1.2.3