Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorCarl Schwan <carl@carlschwan.eu>2022-05-16 11:58:26 +0300
committerCarl Schwan <carl@carlschwan.eu>2022-05-16 11:58:26 +0300
commit53169890d6dccfcc48d80930e33824084d68aa1c (patch)
tree7069b6671b919e5a1200ac2c106224181e03343b /apps
parentad405e93767cfaf0ba34011010bb26dc4c05f60a (diff)
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;
}
/**