aboutsummaryrefslogtreecommitdiffstats
path: root/lib/private/Files
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 13:59:08 +0200
commit1e03bd5d18f087e10ab8aca29f8d3737a99406c5 (patch)
treee825355ec99db97792265bd7ca4d7c1a30f8a0fd /lib/private/Files
parente8c7216d5bf464ccf09dfc438f4c7c6ca9d4c2a8 (diff)
downloadnextcloud-server-1e03bd5d18f087e10ab8aca29f8d3737a99406c5.tar.gz
nextcloud-server-1e03bd5d18f087e10ab8aca29f8d3737a99406c5.zip
fix: fix object store id for test object store
Signed-off-by: Robin Appelman <robin@icewind.nl>
Diffstat (limited to 'lib/private/Files')
-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 5e7125e18a6..4361795ec45 100644
--- a/lib/private/Files/ObjectStore/StorageObjectStore.php
+++ b/lib/private/Files/ObjectStore/StorageObjectStore.php
@@ -27,8 +27,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();
}
/**