From 736b076701b93ea3dafc298b719c9e98efa3394a Mon Sep 17 00:00:00 2001 From: Christoph Fiehe Date: Wed, 18 Sep 2024 14:04:12 +0200 Subject: [PATCH] fix(StorageObjectStore): Add missing return statement to getStorageId(). Signed-off-by: Christoph Fiehe --- lib/private/Files/ObjectStore/StorageObjectStore.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/private/Files/ObjectStore/StorageObjectStore.php b/lib/private/Files/ObjectStore/StorageObjectStore.php index 5e7125e18a6e3..c09b0aac3059b 100644 --- a/lib/private/Files/ObjectStore/StorageObjectStore.php +++ b/lib/private/Files/ObjectStore/StorageObjectStore.php @@ -28,7 +28,7 @@ public function __construct(IStorage $storage) { * @since 7.0.0 */ public function getStorageId() { - $this->storage->getId(); + return $this->storage->getId(); } /**