summaryrefslogtreecommitdiffstats
path: root/tests/lib/Files/ObjectStore/FailDeleteObjectStore.php
diff options
context:
space:
mode:
authorRobin Appelman <robin@icewind.nl>2020-11-05 16:30:05 +0100
committerRobin Appelman <robin@icewind.nl>2020-11-24 15:16:58 +0100
commit9d4848e86383afd1ec49aa81f606f2042def2133 (patch)
tree164177856713c1b64fa303bd87a7d03da949291d /tests/lib/Files/ObjectStore/FailDeleteObjectStore.php
parentf37155d28ba1bc805eeb3abd445d3d965ecb34bd (diff)
downloadnextcloud-server-9d4848e86383afd1ec49aa81f606f2042def2133.tar.gz
nextcloud-server-9d4848e86383afd1ec49aa81f606f2042def2133.zip
use in objectstore copy
Signed-off-by: Robin Appelman <robin@icewind.nl>
Diffstat (limited to 'tests/lib/Files/ObjectStore/FailDeleteObjectStore.php')
-rw-r--r--tests/lib/Files/ObjectStore/FailDeleteObjectStore.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/lib/Files/ObjectStore/FailDeleteObjectStore.php b/tests/lib/Files/ObjectStore/FailDeleteObjectStore.php
index 1a3477090b9..c755657faff 100644
--- a/tests/lib/Files/ObjectStore/FailDeleteObjectStore.php
+++ b/tests/lib/Files/ObjectStore/FailDeleteObjectStore.php
@@ -51,4 +51,8 @@ class FailDeleteObjectStore implements IObjectStore {
public function objectExists($urn) {
return $this->objectStore->objectExists($urn);
}
+
+ public function copyObject($from, $to) {
+ $this->objectStore->copyObject($from, $to);
+ }
}