aboutsummaryrefslogtreecommitdiff
path: root/lib/classes/StudipCacheProxy.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/classes/StudipCacheProxy.php')
-rw-r--r--lib/classes/StudipCacheProxy.php15
1 files changed, 15 insertions, 0 deletions
diff --git a/lib/classes/StudipCacheProxy.php b/lib/classes/StudipCacheProxy.php
index 74df560..686f812 100644
--- a/lib/classes/StudipCacheProxy.php
+++ b/lib/classes/StudipCacheProxy.php
@@ -99,4 +99,19 @@ class StudipCacheProxy implements StudipCache
return $this->actual_cache->write($key, $content, $expires);
}
+
+ public static function getDisplayName(): string
+ {
+ return static::class;
+ }
+
+ public function getStats(): array
+ {
+ return $this->actual_cache->getStats();
+ }
+
+ public static function getConfig(): array
+ {
+ return [];
+ }
}