Skip to content
Snippets Groups Projects
Unverified Commit 50522556 authored by Tim van Dijen's avatar Tim van Dijen Committed by GitHub
Browse files

Fix phpdoc

parent 3d121046
No related branches found
No related tags found
No related merge requests found
......@@ -682,11 +682,12 @@ class LDAP
* @param array $config
* @param string $username
* @param string $password
* @return array|bool
* @return array|false
*/
public function validate($config, $username, $password = null)
{
/* Escape any characters with a special meaning in LDAP. The following
/**
* Escape any characters with a special meaning in LDAP. The following
* characters have a special meaning (according to RFC 2253):
* ',', '+', '"', '\', '<', '>', ';', '*'
* These characters are escaped by prefixing them with '\'.
......@@ -714,7 +715,7 @@ class LDAP
}
}
/*
/**
* Retrieve attributes from LDAP
*/
$attributes = $this->getAttributes($dn, $config['attributes']);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment