From 82397529ef15b589f1fb24054786ca1e92ef77fa 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 | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/private/Files/Storage/Wrapper/Quota.php b/lib/private/Files/Storage/Wrapper/Quota.php index 154c448999c..130a184dab2 100644 --- a/lib/private/Files/Storage/Wrapper/Quota.php +++ b/lib/private/Files/Storage/Wrapper/Quota.php @@ -37,7 +37,6 @@ use OCP\Files\Cache\ICacheEntry; use OCP\Files\Storage\IStorage; class Quota extends Wrapper { - /** * @var int $quota */ @@ -61,7 +60,7 @@ class Quota extends Wrapper { } /** - * @return int quota value + * @return quota value */ public function getQuota() { return $this->quota; -- 2.39.5