diff options
author | Carl Schwan <carl@carlschwan.eu> | 2022-05-16 18:30:09 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-16 18:30:09 +0200 |
commit | 03c46cf1151da2d107fd695899853b888aecd4de (patch) | |
tree | 34f198ededac94e9a3734bdf7b3bdc0736bcad81 /apps | |
parent | 8100580b5d5c7f7f6dbf4bac78b04465a2e33f61 (diff) | |
parent | 53169890d6dccfcc48d80930e33824084d68aa1c (diff) | |
download | nextcloud-server-03c46cf1151da2d107fd695899853b888aecd4de.tar.gz nextcloud-server-03c46cf1151da2d107fd695899853b888aecd4de.zip |
Merge pull request #32413 from nextcloud/fix/psalm-oc-legacy
Fix psalm errors from the end of the baseline file
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files_trashbin/lib/Trashbin.php | 2 |
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; } /** |