aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVincent Petry <vincent@nextcloud.com>2022-12-12 10:25:53 +0100
committerMichaIng <micha@dietpi.com>2023-04-01 14:20:20 +0200
commitc6b683342eefa7cbf41872a4873f6f5b356113fa (patch)
treec9a36ae1dd8e886500601503798156ba48051c05
parent701cc1eabac96cff5ccbb342b2f036d58995b2d6 (diff)
downloadnextcloud-server-c6b683342eefa7cbf41872a4873f6f5b356113fa.tar.gz
nextcloud-server-c6b683342eefa7cbf41872a4873f6f5b356113fa.zip
Remove quota value type for 32-bit systems
Signed-off-by: Vincent Petry <vincent@nextcloud.com>
-rw-r--r--lib/private/Files/Storage/Wrapper/Quota.php4
1 files 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) {