diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2016-01-19 12:17:25 +0100 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2016-01-19 12:17:25 +0100 |
commit | f0f308dfbf54c8e44ae290e63e3d8afeebb68204 (patch) | |
tree | 61d0d4e71b29f0000d5e9c1fb6272aa9d4963425 /apps | |
parent | 7ba90eda87d7e66b9c0ad7ec025371f623bf1857 (diff) | |
parent | 83a8e756143bf5e1727b497f89d8d18888df2fbd (diff) | |
download | nextcloud-server-f0f308dfbf54c8e44ae290e63e3d8afeebb68204.tar.gz nextcloud-server-f0f308dfbf54c8e44ae290e63e3d8afeebb68204.zip |
Merge pull request #21744 from owncloud/scrutinizer-patch-1
Scrutinizer Auto-Fixes
Diffstat (limited to 'apps')
-rw-r--r-- | apps/user_ldap/lib/configuration.php | 1 | ||||
-rw-r--r-- | apps/user_ldap/user_ldap.php | 4 |
2 files changed, 2 insertions, 3 deletions
diff --git a/apps/user_ldap/lib/configuration.php b/apps/user_ldap/lib/configuration.php index e810fb835d4..75d244255c6 100644 --- a/apps/user_ldap/lib/configuration.php +++ b/apps/user_ldap/lib/configuration.php @@ -281,7 +281,6 @@ class Configuration { * * @param string $varName name of config-key * @param array|string $value to set - * @param boolean $trim Trim value? (default: false) */ protected function setMultiLine($varName, $value) { if(empty($value)) { diff --git a/apps/user_ldap/user_ldap.php b/apps/user_ldap/user_ldap.php index 8ebb5ab30e8..87c857a844a 100644 --- a/apps/user_ldap/user_ldap.php +++ b/apps/user_ldap/user_ldap.php @@ -152,8 +152,8 @@ class USER_LDAP extends BackendUtility implements \OCP\IUserBackend, \OCP\UserIn * Get a list of all users * * @param string $search - * @param null|int $limit - * @param null|int $offset + * @param integer $limit + * @param integer $offset * @return string[] an array of all uids */ public function getUsers($search = '', $limit = 10, $offset = 0) { |