]> source.dussan.org Git - nextcloud-server.git/commitdiff
fix: fix object store id for test object store
authorRobin Appelman <robin@icewind.nl>
Wed, 18 Sep 2024 09:14:41 +0000 (11:14 +0200)
committerRobin Appelman <robin@icewind.nl>
Thu, 19 Sep 2024 11:59:08 +0000 (13:59 +0200)
Signed-off-by: Robin Appelman <robin@icewind.nl>
lib/private/Files/ObjectStore/StorageObjectStore.php

index 5e7125e18a6e348d379acea23229eb079417c24f..4361795ec4533c96cf6d9d49ca550bfc7a4b9101 100644 (file)
@@ -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();
        }
 
        /**