diff --git a/lib/SimpleSAML/Auth/LDAP.php b/lib/SimpleSAML/Auth/LDAP.php index 4a2749d4020e7fda5d52f66d72898c5ad04d164f..375c9f698396d3df5584d018198c17d931a49d7d 100644 --- a/lib/SimpleSAML/Auth/LDAP.php +++ b/lib/SimpleSAML/Auth/LDAP.php @@ -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']);