From b05d22717b144e0bf3c7f7439232b7d1afff7a7d Mon Sep 17 00:00:00 2001 From: Jonas Date: Wed, 18 Sep 2024 14:40:04 +0200 Subject: [PATCH] fix(CollectiveStorage): adjust `getOwner` to NC31 Signed-off-by: Jonas --- lib/Mount/CollectiveStorage.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/Mount/CollectiveStorage.php b/lib/Mount/CollectiveStorage.php index b652a3b12..9d40ebc5a 100644 --- a/lib/Mount/CollectiveStorage.php +++ b/lib/Mount/CollectiveStorage.php @@ -38,9 +38,9 @@ public function getFolderId(): int { /** * @param string $path * - * @return false|string + * @return string|false */ - public function getOwner($path) { + public function getOwner($path): string|false { return $this->mountOwner !== null ? $this->mountOwner->getUID() : false; }