add DiskCache.isWritable

master
Andrew Dolgov 5 years ago
parent 86308b30ea
commit 82694bd6ce

@ -10,6 +10,10 @@ class DiskCache {
return $this->dir;
}
public function isWritable() {
return is_dir($this->dir) && is_writable($this->dir);
}
public function exists($filename) {
return file_exists($this->getFullPath($filename));
}

Loading…
Cancel
Save