diff options
author | Robin Appelman <robin@icewind.nl> | 2023-03-22 19:35:05 +0100 |
---|---|---|
committer | Robin Appelman <robin@icewind.nl> | 2023-04-04 17:05:45 +0200 |
commit | 5267a740274b69055da16afe6084b58b9655f003 (patch) | |
tree | 90f08da3e535261e93340a95e2f35a332acb9859 /lib/private/Files/Cache/HomeCache.php | |
parent | 8c9197d65ec44d6bd409f3222e6c6a7feab4e929 (diff) | |
download | nextcloud-server-5267a740274b69055da16afe6084b58b9655f003.tar.gz nextcloud-server-5267a740274b69055da16afe6084b58b9655f003.zip |
fix type hints
Signed-off-by: Robin Appelman <robin@icewind.nl>
Diffstat (limited to 'lib/private/Files/Cache/HomeCache.php')
-rw-r--r-- | lib/private/Files/Cache/HomeCache.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/Files/Cache/HomeCache.php b/lib/private/Files/Cache/HomeCache.php index 4ece3ff2de6..9dbbb46c57b 100644 --- a/lib/private/Files/Cache/HomeCache.php +++ b/lib/private/Files/Cache/HomeCache.php @@ -35,7 +35,7 @@ class HomeCache extends Cache { * get the size of a folder and set it in the cache * * @param string $path - * @param array $entry (optional) meta data of the folder + * @param array|null|ICacheEntry $entry (optional) meta data of the folder * @return int */ public function calculateFolderSize($path, $entry = null) { |