]> source.dussan.org Git - nextcloud-server.git/commitdiff
Fix OCP\Util documentation blocks
authorCôme Chilliet <come.chilliet@nextcloud.com>
Mon, 29 Aug 2022 13:19:20 +0000 (15:19 +0200)
committerCôme Chilliet <come.chilliet@nextcloud.com>
Mon, 29 Aug 2022 13:19:20 +0000 (15:19 +0200)
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
lib/public/Util.php

index ad8818df3ca8a3659408bb853203f31411d3e291..85472b9c9127f45546fcaa697df299256fa30d22 100644 (file)
@@ -630,7 +630,10 @@ class Util {
        }
 
        /**
+        * Compute the fileId to use for dav responses
+        *
         * @param int $id Id of the file returned by FileInfo::getId
+        * @since 25.0.0
         */
        public static function getDavFileId(int $id): string {
                $instanceId = \OC_Util::getInstanceId();
@@ -638,6 +641,11 @@ class Util {
                return $id . $instanceId;
        }
 
+       /**
+        * Compute the format needed for returning permissions for dav
+        *
+        * @since 25.0.0
+        */
        public static function getDavPermissions(\OCP\Files\FileInfo $info): string {
                $p = '';
                if ($info->isShared()) {