diff options
Diffstat (limited to 'framework/Caching/TCache.php')
-rw-r--r-- | framework/Caching/TCache.php | 3 |
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);
}
|