diff options
author | Robin Appelman <robin@icewind.nl> | 2024-09-18 11:14:41 +0200 |
---|---|---|
committer | Robin Appelman <robin@icewind.nl> | 2024-09-18 13:54:55 +0200 |
commit | e0fb25f846966b93929f4661cb51881fcdedad68 (patch) | |
tree | 05ce642e5b750b4a65645cb1d5b73e9ac94e1215 | |
parent | 60f6347c97994f2d62e7067944179c7791b7931b (diff) | |
download | nextcloud-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.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 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(); } /** |