]> source.dussan.org Git - nextcloud-server.git/commitdiff
Share: small phpdoc fixes
authorRobin Appelman <icewind@owncloud.com>
Tue, 1 Jan 2013 17:07:10 +0000 (18:07 +0100)
committerRobin Appelman <icewind@owncloud.com>
Tue, 1 Jan 2013 17:07:10 +0000 (18:07 +0100)
apps/files_sharing/lib/cache.php

index 60f29ce5eebcdd4d6cc9047c05fcc2a7a44001a5..679e42d94d11a625bca71cd83bb0fe2c0d887ce0 100644 (file)
@@ -36,8 +36,8 @@ class Shared_Cache extends Cache {
 
        /**
        * @brief Get the source cache of a shared file or folder
-       * @param string Shared target file path
-       * @return \OC\Files\Storage\Cache
+       * @param string $target Shared target file path
+       * @return \OC\Files\Cache\Cache
        */
        private function getSourceCache($target) {
                $source = \OC_Share_Backend_File::getSource($target);
@@ -230,7 +230,7 @@ class Shared_Cache extends Cache {
         * @return int[]
         */
        public function getAll() {
-               return OCP\Share::getItemsSharedWith('file', \OC_Share_Backend_File::FORMAT_GET_ALL);
+               return \OCP\Share::getItemsSharedWith('file', \OC_Share_Backend_File::FORMAT_GET_ALL);
        }
 
-}
\ No newline at end of file
+}