aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorRobin Appelman <robin@icewind.nl>2024-09-18 11:14:41 +0200
committerLouis <louis@chmn.me>2024-10-08 18:14:26 +0200
commit0dacf097794c1122ec74cf5469f8fc0dd346367d (patch)
treedcbfe9f0aff98382587b95b0d584c63f04dea597 /lib
parente0f7dec5b60fa346a416c491fcaa6bf73b89f51f (diff)
downloadnextcloud-server-0dacf097794c1122ec74cf5469f8fc0dd346367d.tar.gz
nextcloud-server-0dacf097794c1122ec74cf5469f8fc0dd346367d.zip
fix: fix object store id for test object store
Signed-off-by: Robin Appelman <robin@icewind.nl>
Diffstat (limited to 'lib')
-rw-r--r--lib/private/Files/ObjectStore/StorageObjectStore.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/private/Files/ObjectStore/StorageObjectStore.php b/lib/private/Files/ObjectStore/StorageObjectStore.php
index 85926be897e..9f607fb7c25 100644
--- a/lib/private/Files/ObjectStore/StorageObjectStore.php
+++ b/lib/private/Files/ObjectStore/StorageObjectStore.php
@@ -45,8 +45,8 @@ class StorageObjectStore implements IObjectStore {
* @return string the container or bucket name where objects are stored
* @since 7.0.0
*/
- public function getStorageId() {
- $this->storage->getId();
+ public function getStorageId(): string {
+ return $this->storage->getId();
}
/**