From cb6227e68fce71042f0179379cf9e4563601fb9a Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Mon, 12 Dec 2022 10:25:53 +0100 Subject: [PATCH] Remove quota value type for 32-bit systems Signed-off-by: Vincent Petry --- lib/private/Files/Storage/Wrapper/Quota.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/private/Files/Storage/Wrapper/Quota.php b/lib/private/Files/Storage/Wrapper/Quota.php index 5c542361c36..e28df24111e 100644 --- a/lib/private/Files/Storage/Wrapper/Quota.php +++ b/lib/private/Files/Storage/Wrapper/Quota.php @@ -57,9 +57,9 @@ class Quota extends Wrapper { } /** - * @return int quota value + * @return quota value */ - public function getQuota(): int { + public function getQuota() { if ($this->quota === null) { $quotaCallback = $this->quotaCallback; if ($quotaCallback === null) { -- 2.39.5