summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorCarl Schwan <carl@carlschwan.eu>2022-05-16 10:58:26 +0200
committerJohn Molakvoæ <skjnldsv@protonmail.com>2022-10-27 15:50:22 +0200
commit3ec8dce3cc1d47b373ecb0a3eeb4f8a333da9cce (patch)
tree91d30aad79502457153a2d8fcede374c009018e2 /apps
parent220d71d99798df9d64873be0d67a35989258754e (diff)
downloadnextcloud-server-3ec8dce3cc1d47b373ecb0a3eeb4f8a333da9cce.tar.gz
nextcloud-server-3ec8dce3cc1d47b373ecb0a3eeb4f8a333da9cce.zip
Fix psalm errors fron the end of the baseline file
Signed-off-by: Carl Schwan <carl@carlschwan.eu>
Diffstat (limited to 'apps')
-rw-r--r--apps/files_trashbin/lib/Trashbin.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_trashbin/lib/Trashbin.php b/apps/files_trashbin/lib/Trashbin.php
index 4631f9e9d5b..72072a2588c 100644
--- a/apps/files_trashbin/lib/Trashbin.php
+++ b/apps/files_trashbin/lib/Trashbin.php
@@ -801,7 +801,7 @@ class Trashbin {
$availableSpace = $quota;
}
- return $availableSpace;
+ return (int)$availableSpace;
}
/**