summaryrefslogtreecommitdiffstats
path: root/lib/public/Files
diff options
context:
space:
mode:
authorCôme Chilliet <come.chilliet@nextcloud.com>2023-01-23 13:30:38 +0100
committerCôme Chilliet <come.chilliet@nextcloud.com>2023-02-07 11:23:31 +0100
commit5c1a0e0307408b9f9031b40beaadaa9f45732c84 (patch)
treec34f662e3c23a58b192586effb1a65f471518863 /lib/public/Files
parent5aed587e2516417ea72f4ea84772ceaa6df58141 (diff)
downloadnextcloud-server-5c1a0e0307408b9f9031b40beaadaa9f45732c84.tar.gz
nextcloud-server-5c1a0e0307408b9f9031b40beaadaa9f45732c84.zip
Allow float sizes in FileInfo for 32bits
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
Diffstat (limited to 'lib/public/Files')
-rw-r--r--lib/public/Files/FileInfo.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/public/Files/FileInfo.php b/lib/public/Files/FileInfo.php
index 14edf6a7645..0e521cea65c 100644
--- a/lib/public/Files/FileInfo.php
+++ b/lib/public/Files/FileInfo.php
@@ -84,7 +84,7 @@ interface FileInfo {
* Get the size in bytes for the file or folder
*
* @param bool $includeMounts whether or not to include the size of any sub mounts, since 16.0.0
- * @return int
+ * @return int|float
* @since 7.0.0
*/
public function getSize($includeMounts = true);