Fix parameter types in docs
Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
parent
f2acf492cf
commit
e9ea4a0f01
|
@ -133,7 +133,7 @@ class User_LDAP extends BackendUtility implements \OCP\IUserBackend, \OCP\UserIn
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* returns the username for the given LDAP DN, if available
|
* returns the username for the given LDAP DN, if available
|
||||||
*
|
*
|
||||||
|
@ -502,8 +502,8 @@ class User_LDAP extends BackendUtility implements \OCP\IUserBackend, \OCP\UserIn
|
||||||
* Get a list of all display names
|
* Get a list of all display names
|
||||||
*
|
*
|
||||||
* @param string $search
|
* @param string $search
|
||||||
* @param string|null $limit
|
* @param int|null $limit
|
||||||
* @param string|null $offset
|
* @param int|null $offset
|
||||||
* @return array an array of all displayNames (value) and the corresponding uids (key)
|
* @return array an array of all displayNames (value) and the corresponding uids (key)
|
||||||
*/
|
*/
|
||||||
public function getDisplayNames($search = '', $limit = null, $offset = null) {
|
public function getDisplayNames($search = '', $limit = null, $offset = null) {
|
||||||
|
@ -574,7 +574,7 @@ class User_LDAP extends BackendUtility implements \OCP\IUserBackend, \OCP\UserIn
|
||||||
public function getBackendName() {
|
public function getBackendName() {
|
||||||
return 'LDAP';
|
return 'LDAP';
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Return access for LDAP interaction.
|
* Return access for LDAP interaction.
|
||||||
* @param string $uid
|
* @param string $uid
|
||||||
|
@ -583,7 +583,7 @@ class User_LDAP extends BackendUtility implements \OCP\IUserBackend, \OCP\UserIn
|
||||||
public function getLDAPAccess($uid) {
|
public function getLDAPAccess($uid) {
|
||||||
return $this->access;
|
return $this->access;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Return LDAP connection resource from a cloned connection.
|
* Return LDAP connection resource from a cloned connection.
|
||||||
* The cloned connection needs to be closed manually.
|
* The cloned connection needs to be closed manually.
|
||||||
|
|
|
@ -292,8 +292,8 @@ class User_Proxy extends Proxy implements \OCP\IUserBackend, \OCP\UserInterface,
|
||||||
* Get a list of all display names and user ids.
|
* Get a list of all display names and user ids.
|
||||||
*
|
*
|
||||||
* @param string $search
|
* @param string $search
|
||||||
* @param string|null $limit
|
* @param int|null $limit
|
||||||
* @param string|null $offset
|
* @param int|null $offset
|
||||||
* @return array an array of all displayNames (value) and the corresponding uids (key)
|
* @return array an array of all displayNames (value) and the corresponding uids (key)
|
||||||
*/
|
*/
|
||||||
public function getDisplayNames($search = '', $limit = null, $offset = null) {
|
public function getDisplayNames($search = '', $limit = null, $offset = null) {
|
||||||
|
|
|
@ -143,8 +143,8 @@ abstract class Backend implements UserInterface {
|
||||||
* Get a list of all display names and user ids.
|
* Get a list of all display names and user ids.
|
||||||
*
|
*
|
||||||
* @param string $search
|
* @param string $search
|
||||||
* @param string|null $limit
|
* @param int|null $limit
|
||||||
* @param string|null $offset
|
* @param int|null $offset
|
||||||
* @return array an array of all displayNames (value) and the corresponding uids (key)
|
* @return array an array of all displayNames (value) and the corresponding uids (key)
|
||||||
*/
|
*/
|
||||||
public function getDisplayNames($search = '', $limit = null, $offset = null) {
|
public function getDisplayNames($search = '', $limit = null, $offset = null) {
|
||||||
|
|
|
@ -256,8 +256,8 @@ class Database extends ABackend implements
|
||||||
* Get a list of all display names and user ids.
|
* Get a list of all display names and user ids.
|
||||||
*
|
*
|
||||||
* @param string $search
|
* @param string $search
|
||||||
* @param string|null $limit
|
* @param int|null $limit
|
||||||
* @param string|null $offset
|
* @param int|null $offset
|
||||||
* @return array an array of all displayNames (value) and the corresponding uids (key)
|
* @return array an array of all displayNames (value) and the corresponding uids (key)
|
||||||
*/
|
*/
|
||||||
public function getDisplayNames($search = '', $limit = null, $offset = null) {
|
public function getDisplayNames($search = '', $limit = null, $offset = null) {
|
||||||
|
|
|
@ -92,8 +92,8 @@ interface UserInterface {
|
||||||
* Get a list of all display names and user ids.
|
* Get a list of all display names and user ids.
|
||||||
*
|
*
|
||||||
* @param string $search
|
* @param string $search
|
||||||
* @param string|null $limit
|
* @param int|null $limit
|
||||||
* @param string|null $offset
|
* @param int|null $offset
|
||||||
* @return array an array of all displayNames (value) and the corresponding uids (key)
|
* @return array an array of all displayNames (value) and the corresponding uids (key)
|
||||||
* @since 4.5.0
|
* @since 4.5.0
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in New Issue