diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2014-02-08 11:47:55 +0100 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2014-02-08 11:47:55 +0100 |
commit | b330d07b51a983dc563a91244a3c83e691c9e97d (patch) | |
tree | 1142ec91b86d5da36e568ffcb4a25f5fd55b01fe /apps | |
parent | 81031984a6714feffc8b1a8e523988ab83f56515 (diff) | |
download | nextcloud-server-b330d07b51a983dc563a91244a3c83e691c9e97d.tar.gz nextcloud-server-b330d07b51a983dc563a91244a3c83e691c9e97d.zip |
Fix more documentation failes
Issue #7111
Diffstat (limited to 'apps')
-rwxr-xr-x | apps/files_encryption/lib/helper.php | 3 | ||||
-rwxr-xr-x | apps/files_external/lib/config.php | 17 | ||||
-rw-r--r-- | apps/user_ldap/lib/wizard.php | 2 |
3 files changed, 8 insertions, 14 deletions
diff --git a/apps/files_encryption/lib/helper.php b/apps/files_encryption/lib/helper.php index 0ab32020d69..8cc6096edd2 100755 --- a/apps/files_encryption/lib/helper.php +++ b/apps/files_encryption/lib/helper.php @@ -423,8 +423,7 @@ class Helper { /** * @brief glob uses different pattern than regular expressions, escape glob pattern only - * @param unescaped path - * @param string $path + * @param string $path unescaped path * @return escaped path */ public static function escapeGlobPattern($path) { diff --git a/apps/files_external/lib/config.php b/apps/files_external/lib/config.php index 76b8b5fa9fb..ae0f4e41a5a 100755 --- a/apps/files_external/lib/config.php +++ b/apps/files_external/lib/config.php @@ -263,17 +263,13 @@ class OC_Mount_Config { /** * Add a mount point to the filesystem - * @param string Mount point - * @param string Backend class + * @param string $mountPoint Mount point + * @param string $class Backend class * @param array Backend parameters for the class - * @param string MOUNT_TYPE_GROUP | MOUNT_TYPE_USER - * @param string User or group to apply mount to + * @param string $mountType MOUNT_TYPE_GROUP | MOUNT_TYPE_USER + * @param string $applicable User or group to apply mount to * @param bool Personal or system mount point i.e. is this being called from the personal or admin page - * @param string $mountPoint - * @param string $class - * @param string $mountType - * @param string $applicable - * @return bool + * @return boolean */ public static function addMountPoint($mountPoint, $class, @@ -347,8 +343,7 @@ class OC_Mount_Config { /** * Read the mount points in the config file into an array - * @param bool Personal or system config file - * @param boolean $isPersonal + * @param boolean $isPersonal Personal or system config file * @return array */ private static function readData($isPersonal) { diff --git a/apps/user_ldap/lib/wizard.php b/apps/user_ldap/lib/wizard.php index 7160cdc04f2..27edeb2a449 100644 --- a/apps/user_ldap/lib/wizard.php +++ b/apps/user_ldap/lib/wizard.php @@ -240,9 +240,9 @@ class Wizard extends LDAPUtility { /** * @brief detects the available LDAP groups - * @returns the instance's WizardResult instance * @param string $dbkey * @param string $confkey + * @returns the instance's WizardResult instance */ private function determineGroups($dbkey, $confkey, $testMemberOf = true) { if(!$this->checkRequirements(array('ldapHost', |