From c4f1de63a8ebe137566e034641b7bc3b05a05058 Mon Sep 17 00:00:00 2001 From: Robin McCorkell Date: Tue, 13 May 2014 12:29:25 +0100 Subject: Fix PHPDoc in /apps --- apps/files_external/lib/config.php | 10 +++++----- apps/files_external/lib/dropbox.php | 4 ++-- 2 files changed, 7 insertions(+), 7 deletions(-) (limited to 'apps/files_external') diff --git a/apps/files_external/lib/config.php b/apps/files_external/lib/config.php index 9906b7670a8..e8618398c59 100755 --- a/apps/files_external/lib/config.php +++ b/apps/files_external/lib/config.php @@ -610,9 +610,9 @@ class OC_Mount_Config { /** * Returns a dependency missing message - * @param $l OC_L10N - * @param $module string - * @param $backend string + * @param OC_L10N $l + * @param string $module + * @param string $backend * @return string */ private static function getSingleDependencyMessage($l, $module, $backend) { @@ -658,7 +658,7 @@ class OC_Mount_Config { /** * Encrypt a single password * @param string $password plain text password - * @return encrypted password + * @return string encrypted password */ private static function encryptPassword($password) { $cipher = self::getCipher(); @@ -670,7 +670,7 @@ class OC_Mount_Config { /** * Decrypts a single password * @param string $encryptedPassword encrypted password - * @return plain text password + * @return string plain text password */ private static function decryptPassword($encryptedPassword) { $cipher = self::getCipher(); diff --git a/apps/files_external/lib/dropbox.php b/apps/files_external/lib/dropbox.php index 38de3360f2b..9b0e6befee3 100755 --- a/apps/files_external/lib/dropbox.php +++ b/apps/files_external/lib/dropbox.php @@ -65,8 +65,8 @@ class Dropbox extends \OC\Files\Storage\Common { /** * @brief Returns the path's metadata * @param string $path path for which to return the metadata - * @param $list if true, also return the directory's contents - * @return directory contents if $list is true, file metadata if $list is + * @param bool $list if true, also return the directory's contents + * @return mixed directory contents if $list is true, file metadata if $list is * false, null if the file doesn't exist or "false" if the operation failed */ private function getMetaData($path, $list = false) { -- cgit v1.2.3