aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRobin Appelman <robin@icewind.nl>2024-09-18 11:14:41 +0200
committerRobin Appelman <robin@icewind.nl>2024-09-18 13:54:55 +0200
commite0fb25f846966b93929f4661cb51881fcdedad68 (patch)
tree05ce642e5b750b4a65645cb1d5b73e9ac94e1215
parent60f6347c97994f2d62e7067944179c7791b7931b (diff)
downloadnextcloud-server-e0fb25f846966b93929f4661cb51881fcdedad68.tar.gz
nextcloud-server-e0fb25f846966b93929f4661cb51881fcdedad68.zip
fix: fix object store id for test object store
Signed-off-by: Robin Appelman <robin@icewind.nl>
-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();
}
/**