summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorVincent Petry <vincent@nextcloud.com>2022-12-12 10:25:53 +0100
committerCôme Chilliet <come.chilliet@nextcloud.com>2022-12-19 14:47:51 +0100
commite0f6f7e6ac9fbb956318c47e2b173fbafa7347c0 (patch)
tree1a8d23a439ba3b9f06cb4cee2125ce380c42d4d4 /lib
parent1efbbd885c628c1f4cc777479988e0a10427f4e1 (diff)
downloadnextcloud-server-e0f6f7e6ac9fbb956318c47e2b173fbafa7347c0.tar.gz
nextcloud-server-e0f6f7e6ac9fbb956318c47e2b173fbafa7347c0.zip
Remove quota value type for 32-bit systems
Signed-off-by: Vincent Petry <vincent@nextcloud.com>
Diffstat (limited to 'lib')
-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) {