From 301ac98071960b333c00fcae83a6cb63064bc4df Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=B4me=20Chilliet?= <91878298+come-nc@users.noreply.github.com> Date: Tue, 24 Jan 2023 18:10:45 +0100 Subject: [PATCH] Allow float sizes for 32bit support --- lib/DAV/IFile.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/DAV/IFile.php b/lib/DAV/IFile.php index 974aee00dd..bd74da497a 100644 --- a/lib/DAV/IFile.php +++ b/lib/DAV/IFile.php @@ -77,7 +77,7 @@ public function getETag(); /** * Returns the size of the node, in bytes. * - * @return int + * @return int|float */ public function getSize(); }