summaryrefslogtreecommitdiffstats
path: root/lib/private/Files/ObjectStore/StorageObjectStore.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/private/Files/ObjectStore/StorageObjectStore.php')
-rw-r--r--lib/private/Files/ObjectStore/StorageObjectStore.php3
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/private/Files/ObjectStore/StorageObjectStore.php b/lib/private/Files/ObjectStore/StorageObjectStore.php
index 0d35ba2ed7a..f9fc1b5a4aa 100644
--- a/lib/private/Files/ObjectStore/StorageObjectStore.php
+++ b/lib/private/Files/ObjectStore/StorageObjectStore.php
@@ -89,4 +89,7 @@ class StorageObjectStore implements IObjectStore {
$this->storage->unlink($urn);
}
+ public function objectExists($urn) {
+ return $this->storage->file_exists($urn);
+ }
}