mirror of
https://github.com/nextcloud/server.git
synced 2025-03-16 09:14:07 +00:00
fix: fix object store id for test object store
Signed-off-by: Robin Appelman <robin@icewind.nl>
This commit is contained in:
parent
6683711516
commit
48cd657d26
1 changed files with 2 additions and 2 deletions
|
@ -45,8 +45,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();
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue