diff options
author | Robin Appelman <robin@icewind.nl> | 2024-09-18 11:14:41 +0200 |
---|---|---|
committer | Louis <louis@chmn.me> | 2024-10-08 18:14:26 +0200 |
commit | 0dacf097794c1122ec74cf5469f8fc0dd346367d (patch) | |
tree | dcbfe9f0aff98382587b95b0d584c63f04dea597 /lib | |
parent | e0f7dec5b60fa346a416c491fcaa6bf73b89f51f (diff) | |
download | nextcloud-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.php | 4 |
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(); } /** |