summaryrefslogtreecommitdiff
path: root/framework/Caching
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/Caching
parent623267d4377806ca3500b209f0a939c2326198de (diff)
Ensured parent::__construct calls to Base, Caching, and Collections
Diffstat (limited to 'framework/Caching')
-rw-r--r--framework/Caching/TCache.php3
1 files changed, 3 insertions, 0 deletions
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);
}