diff --git a/system/Test/Mock/MockCache.php b/system/Test/Mock/MockCache.php index f82d2c2be252..f4fb1a972c5d 100644 --- a/system/Test/Mock/MockCache.php +++ b/system/Test/Mock/MockCache.php @@ -235,11 +235,11 @@ public function clean() * The information returned and the structure of the data * varies depending on the handler. * - * @return mixed + * @return string[] Keys currently present in the store */ public function getCacheInfo() { - return []; + return array_keys($this->cache); } //--------------------------------------------------------------------