aboutsummaryrefslogtreecommitdiff
path: root/lib/classes/StudipCacheWrapper.php
diff options
context:
space:
mode:
authorJan-Hendrik Willms <tleilax+studip@gmail.com>2023-10-02 09:19:55 +0000
committerJan-Hendrik Willms <tleilax+studip@gmail.com>2023-10-02 09:19:55 +0000
commitfe64b827e2e503085c6f596eeed08d6ece36624b (patch)
tree4404ebfc07eec72f1bb46bd19f8244ecc0b7b48a /lib/classes/StudipCacheWrapper.php
parent8554b74bb2cc62bda4bdeb8ba6b081fde5f619ce (diff)
fixes #3029
Closes #3029 Merge request studip/studip!2036
Diffstat (limited to 'lib/classes/StudipCacheWrapper.php')
-rw-r--r--lib/classes/StudipCacheWrapper.php15
1 files changed, 15 insertions, 0 deletions
diff --git a/lib/classes/StudipCacheWrapper.php b/lib/classes/StudipCacheWrapper.php
index 950e9a6..6c75c01 100644
--- a/lib/classes/StudipCacheWrapper.php
+++ b/lib/classes/StudipCacheWrapper.php
@@ -67,4 +67,19 @@ class StudipCacheWrapper implements StudipCache
return false;
}
}
+
+ public static function getDisplayName(): string
+ {
+ return static::class;
+ }
+
+ public function getStats(): array
+ {
+ return $this->actual_cache->getStats();
+ }
+
+ public static function getConfig(): array
+ {
+ return [];
+ }
}