add method to get the used object store from the storage

Signed-off-by: Robin Appelman <robin@icewind.nl>
This commit is contained in:
Robin Appelman 2019-05-21 17:18:00 +02:00
parent a3b4410283
commit 439b341e89
No known key found for this signature in database
GPG Key ID: 42B69D8A64526EFB
1 changed files with 4 additions and 0 deletions

View File

@ -476,4 +476,8 @@ class ObjectStoreStorage extends \OC\Files\Storage\Common {
return $size;
}
public function getObjectStore(): IObjectStore {
return $this->objectStore;
}
}