summaryrefslogtreecommitdiffstats
path: root/apps/user_ldap
diff options
context:
space:
mode:
authorLukas Reschke <lukas@statuscode.ch>2014-05-11 16:27:18 +0200
committerLukas Reschke <lukas@statuscode.ch>2014-05-11 16:27:18 +0200
commit416f8b186d91451222e080239cf9532db52256e4 (patch)
tree046b078922908f4015e9b16b727fd249a71ac800 /apps/user_ldap
parentcd3ed01483ce9989491cfe9019b6c373275bc949 (diff)
downloadnextcloud-server-416f8b186d91451222e080239cf9532db52256e4.tar.gz
nextcloud-server-416f8b186d91451222e080239cf9532db52256e4.zip
Use @return instead of @returns
Diffstat (limited to 'apps/user_ldap')
-rw-r--r--apps/user_ldap/lib/access.php8
-rw-r--r--apps/user_ldap/lib/connection.php2
-rw-r--r--apps/user_ldap/lib/wizard.php8
3 files changed, 9 insertions, 9 deletions
diff --git a/apps/user_ldap/lib/access.php b/apps/user_ldap/lib/access.php
index 4b37f59f1d4..757d1f268a2 100644
--- a/apps/user_ldap/lib/access.php
+++ b/apps/user_ldap/lib/access.php
@@ -765,7 +765,7 @@ class Access extends LDAPUtility {
* @param bool $pagedSearchOK whether a paged search has been executed
* @param bool $skipHandling required for paged search when cookies to
* prior results need to be gained
- * @returns array|false array with the search result as first value and pagedSearchOK as
+ * @return array|false array with the search result as first value and pagedSearchOK as
* second | false if not successful
*/
private function processPagedSearchStatus($sr, $filter, $base, $iFoundItems, $limit, $offset, $pagedSearchOK, $skipHandling) {
@@ -805,7 +805,7 @@ class Access extends LDAPUtility {
* @param int $offset optional, a starting point
* @param bool $skipHandling indicates whether the pages search operation is
* completed
- * @returns int|false Integer or false if the search could not be initialized
+ * @return int|false Integer or false if the search could not be initialized
*
*/
private function count($filter, $base, $attr = null, $limit = null, $offset = null, $skipHandling = false) {
@@ -1111,7 +1111,7 @@ class Access extends LDAPUtility {
* @param string $dn a known DN used to check against
* @param bool $isUser
* @param bool $force the detection should be run, even if it is not set to auto
- * @returns true on success, false otherwise
+ * @return bool true on success, false otherwise
*/
private function detectUuidAttribute($dn, $isUser = true, $force = false) {
if($isUser) {
@@ -1245,7 +1245,7 @@ class Access extends LDAPUtility {
* @param string $filter the search filter to identify the correct search
* @param int $limit the limit (or 'pageSize'), to identify the correct search well
* @param int $offset the offset for the new search to identify the correct search really good
- * @returns string containing the key or empty if none is cached
+ * @return string containing the key or empty if none is cached
*/
private function getPagedResultCookie($base, $filter, $limit, $offset) {
if($offset === 0) {
diff --git a/apps/user_ldap/lib/connection.php b/apps/user_ldap/lib/connection.php
index bdcbeccf99d..e04a23507b0 100644
--- a/apps/user_ldap/lib/connection.php
+++ b/apps/user_ldap/lib/connection.php
@@ -434,7 +434,7 @@ class Connection extends LDAPUtility {
/**
* @brief Validates the user specified configuration
- * @returns true if configuration seems OK, false otherwise
+ * @return true if configuration seems OK, false otherwise
*/
private function validateConfiguration() {
diff --git a/apps/user_ldap/lib/wizard.php b/apps/user_ldap/lib/wizard.php
index ca32f10ff2d..36a68fe6e65 100644
--- a/apps/user_ldap/lib/wizard.php
+++ b/apps/user_ldap/lib/wizard.php
@@ -236,7 +236,7 @@ class Wizard extends LDAPUtility {
/**
* @brief detects the available LDAP groups
- * @returns WizardResult the instance's WizardResult instance
+ * @return WizardResult the instance's WizardResult instance
*/
public function determineGroupsForGroups() {
return $this->determineGroups('ldap_groupfilter_groups',
@@ -246,7 +246,7 @@ class Wizard extends LDAPUtility {
/**
* @brief detects the available LDAP groups
- * @returns WizardResult the instance's WizardResult instance
+ * @return WizardResult the instance's WizardResult instance
*/
public function determineGroupsForUsers() {
return $this->determineGroups('ldap_userfilter_groups',
@@ -441,7 +441,7 @@ class Wizard extends LDAPUtility {
/**
* Tries to determine the port, requires given Host, User DN and Password
- * @returns WizardResult|false WizardResult on success, false otherwise
+ * @return WizardResult|false WizardResult on success, false otherwise
* @throws \Exception
*/
public function guessPortAndTLS() {
@@ -480,7 +480,7 @@ class Wizard extends LDAPUtility {
/**
* @brief tries to determine a base dn from User DN or LDAP Host
- * @returns mixed WizardResult on success, false otherwise
+ * @return mixed WizardResult on success, false otherwise
*/
public function guessBaseDN() {
if(!$this->checkRequirements(array('ldapHost',