summaryrefslogtreecommitdiffstats
path: root/lib/private/cache
diff options
context:
space:
mode:
Diffstat (limited to 'lib/private/cache')
-rw-r--r--lib/private/cache/file.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/cache/file.php b/lib/private/cache/file.php
index 7bffc2cc2d2..b6e426989b8 100644
--- a/lib/private/cache/file.php
+++ b/lib/private/cache/file.php
@@ -83,7 +83,7 @@ class File {
public function hasKey($key) {
$storage = $this->getStorage();
- if ($storage && $storage->is_readable($key)) {
+ if ($storage && $storage->isReadable($key)) {
return true;
}
return false;