diff options
author | Robin McCorkell <rmccorkell@karoshi.org.uk> | 2014-05-15 13:19:32 +0100 |
---|---|---|
committer | Robin McCorkell <rmccorkell@karoshi.org.uk> | 2014-05-16 22:21:57 +0100 |
commit | 6930ae22e462e3fd11acbe0f103f2b9a8e8c0e20 (patch) | |
tree | e7a68a614e8db76cf75a2b2c61003ebe25a68216 /apps/files_sharing/lib/sharedstorage.php | |
parent | a17f9111a087055306f8aabf1b4a0c4aca9684e8 (diff) | |
download | nextcloud-server-6930ae22e462e3fd11acbe0f103f2b9a8e8c0e20.tar.gz nextcloud-server-6930ae22e462e3fd11acbe0f103f2b9a8e8c0e20.zip |
Fix more missing or broken PHPDoc
Diffstat (limited to 'apps/files_sharing/lib/sharedstorage.php')
-rw-r--r-- | apps/files_sharing/lib/sharedstorage.php | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/apps/files_sharing/lib/sharedstorage.php b/apps/files_sharing/lib/sharedstorage.php index d1ca60ff6ac..a6a34d9adc0 100644 --- a/apps/files_sharing/lib/sharedstorage.php +++ b/apps/files_sharing/lib/sharedstorage.php @@ -53,8 +53,7 @@ class Shared extends \OC\Files\Storage\Common { /** * @brief Get the source file path, permissions, and owner for a shared file - * @param string Shared target file path - * @param string $target + * @param string $target Shared target file path * @return Returns array with the keys path, permissions, and owner or false if not found */ public function getFile($target) { @@ -77,8 +76,7 @@ class Shared extends \OC\Files\Storage\Common { /** * @brief Get the source file path for a shared file - * @param string Shared target file path - * @param string $target + * @param string $target Shared target file path * @return string source file path or false if not found */ public function getSourcePath($target) { @@ -101,7 +99,7 @@ class Shared extends \OC\Files\Storage\Common { /** * @brief Get the permissions granted for a shared file - * @param string Shared target file path + * @param string $target Shared target file path * @return int CRUDS permissions granted */ public function getPermissions($target) { |