diff options
Diffstat (limited to 'apps/files_encryption/lib/util.php')
-rw-r--r-- | apps/files_encryption/lib/util.php | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/apps/files_encryption/lib/util.php b/apps/files_encryption/lib/util.php index b96e4590507..84dbec6fdfc 100644 --- a/apps/files_encryption/lib/util.php +++ b/apps/files_encryption/lib/util.php @@ -54,7 +54,7 @@ class Util { /** * @param \OC\Files\View $view - * @param $userId + * @param string $userId * @param bool $client */ public function __construct($view, $userId, $client = false) { @@ -1238,7 +1238,7 @@ class Util { /** * @brief check if files are already migrated to the encryption system - * @return migration status, false = in case of no record + * @return int|false migration status, false = in case of no record * @note If records are not being returned, check for a hidden space * at the start of the uid in db */ @@ -1398,8 +1398,7 @@ class Util { /** * @brief get owner of the shared files. - * @param $id - * @internal param int $Id of a share + * @param int $id ID of a share * @return string owner */ public function getOwnerFromSharedFile($id) { @@ -1479,7 +1478,7 @@ class Util { } /** - * @param $password + * @param string $password * @return bool */ public function checkRecoveryPassword($password) { @@ -1639,7 +1638,7 @@ class Util { /** * @brief check if the file is stored on a system wide mount point - * @param $path relative to /data/user with leading '/' + * @param string $path relative to /data/user with leading '/' * @return boolean */ public function isSystemWideMountPoint($path) { |