fix: fix object store id for test object store

Signed-off-by: Robin Appelman <robin@icewind.nl>
pull/48160/head
Robin Appelman 2024-09-18 11:14:41 +07:00
parent 60f6347c97
commit e0fb25f846
1 changed files with 2 additions and 2 deletions

@ -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();
}
/**