]> source.dussan.org Git - nextcloud-server.git/commitdiff
Fix return types in phpdoc 38196/head
authorCôme Chilliet <come.chilliet@nextcloud.com>
Mon, 15 May 2023 10:24:42 +0000 (12:24 +0200)
committerCôme Chilliet <come.chilliet@nextcloud.com>
Mon, 15 May 2023 10:24:42 +0000 (12:24 +0200)
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
lib/private/Files/Cache/Cache.php
lib/private/Files/Cache/HomeCache.php
lib/private/Files/Cache/Scanner.php
lib/private/Files/Cache/Wrapper/CacheJail.php
lib/private/Files/Cache/Wrapper/CacheWrapper.php

index 5632f9db03ec6a4a7496ee15fb1cec2160935682..8fe413a02065aeda56dfaef7c12cef89885aa28a 100644 (file)
@@ -901,7 +901,7 @@ class Cache implements ICache {
         *
         * @param string $path
         * @param array|null|ICacheEntry $entry (optional) meta data of the folder
-        * @return int
+        * @return int|float
         */
        public function calculateFolderSize($path, $entry = null) {
                return $this->calculateFolderSizeInner($path, $entry);
index 9dbbb46c57bdc889487ba7c550171a634bb60738..83e5cb89b8ace75c35c41fa974a57e8fb484a0bf 100644 (file)
@@ -36,7 +36,7 @@ class HomeCache extends Cache {
         *
         * @param string $path
         * @param array|null|ICacheEntry $entry (optional) meta data of the folder
-        * @return int
+        * @return int|float
         */
        public function calculateFolderSize($path, $entry = null) {
                if ($path !== '/' and $path !== '' and $path !== 'files' and $path !== 'files_trashbin' and $path !== 'files_versions') {
index e3a08264716db9d3c48f9e79eb6ade6b2cdbb3b6..81a7779c846037d429231d8ab1e5ea7e2356e952 100644 (file)
@@ -386,7 +386,7 @@ class Scanner extends BasicEmitter implements IScanner {
         * @param int $folderId id for the folder to be scanned
         * @param bool $lock set to false to disable getting an additional read lock during scanning
         * @param array $data the data of the folder before (re)scanning the children
-        * @return int the size of the scanned folder or -1 if the size is unknown at this stage
+        * @return int|float the size of the scanned folder or -1 if the size is unknown at this stage
         */
        protected function scanChildren($path, $recursive = self::SCAN_RECURSIVE, $reuse = -1, $folderId = null, $lock = true, array $data = []) {
                if ($reuse === -1) {
index a5075ceef869fdbfd90086c10efc71be30a9e288..c444647383329b204a4002af8738282d3665d645 100644 (file)
@@ -240,7 +240,7 @@ class CacheJail extends CacheWrapper {
         *
         * @param string $path
         * @param array|null|ICacheEntry $entry (optional) meta data of the folder
-        * @return int
+        * @return int|float
         */
        public function calculateFolderSize($path, $entry = null) {
                if ($this->getCache() instanceof Cache) {
index c1043fbc6fb58f5dbe040bc3ca0257213deda88f..6479ea793b000eb33c74e2ba485beccc82db3a79 100644 (file)
@@ -250,7 +250,7 @@ class CacheWrapper extends Cache {
         *
         * @param string $path
         * @param array|null|ICacheEntry $entry (optional) meta data of the folder
-        * @return int
+        * @return int|float
         */
        public function calculateFolderSize($path, $entry = null) {
                if ($this->getCache() instanceof Cache) {