summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorRobin Appelman <robin@icewind.nl>2024-09-18 11:14:41 +0200
committerRobin Appelman <robin@icewind.nl>2024-09-19 17:44:41 +0200
commit48cd657d26f1d3943451833ea05d1959edba3d15 (patch)
tree7781446314b99caa2110fb6aa15063da30960a58 /lib
parent66837115162a7f722ee7e11e207cbc7a0ebf9d56 (diff)
downloadnextcloud-server-48cd657d26f1d3943451833ea05d1959edba3d15.tar.gz
nextcloud-server-48cd657d26f1d3943451833ea05d1959edba3d15.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 d968adb3c29..b01a2ade7a0 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();
}
/**