diff options
author | Arthur Schiwon <blizzz@arthur-schiwon.de> | 2023-10-11 11:09:23 +0200 |
---|---|---|
committer | Arthur Schiwon <blizzz@arthur-schiwon.de> | 2023-10-11 14:41:43 +0200 |
commit | 96eca4a3ea328bf3a9764fe9e4bfc01a8c36d780 (patch) | |
tree | 43b0da1d001b14bb242bec69896263a1a6dc4a39 | |
parent | 29c36f85b0a008e1dc677c612b472488bcdd5f5e (diff) | |
download | nextcloud-server-96eca4a3ea328bf3a9764fe9e4bfc01a8c36d780.tar.gz nextcloud-server-96eca4a3ea328bf3a9764fe9e4bfc01a8c36d780.zip |
fix(ci): update return type in php doc
Co-authored-by: Côme Chilliet <91878298+come-nc@users.noreply.github.com>
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
-rw-r--r-- | lib/private/Files/Cache/Cache.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/Files/Cache/Cache.php b/lib/private/Files/Cache/Cache.php index 5454e9eb56f..5a89e73410f 100644 --- a/lib/private/Files/Cache/Cache.php +++ b/lib/private/Files/Cache/Cache.php @@ -896,7 +896,7 @@ class Cache implements ICache { * @param string $path * @param array|null|ICacheEntry $entry (optional) meta data of the folder * @param bool $ignoreUnknown don't mark the folder size as unknown if any of it's children are unknown - * @return int + * @return int|float */ protected function calculateFolderSizeInner(string $path, $entry = null, bool $ignoreUnknown = false) { $totalSize = 0; |