File tree Expand file tree Collapse file tree 1 file changed +8
-0
lines changed
src/Symfony/Component/Ldap/Adapter Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change 11
11
12
12
namespace Symfony \Component \Ldap \Adapter ;
13
13
14
+ use Symfony \Component \Ldap \Exception \AlreadyExistsException ;
15
+ use Symfony \Component \Ldap \Exception \ConnectionTimeoutException ;
16
+ use Symfony \Component \Ldap \Exception \InvalidCredentialsException ;
17
+
14
18
/**
15
19
* @author Charles Sarrazin <charles@sarraz.in>
16
20
*/
@@ -28,6 +32,10 @@ public function isBound();
28
32
*
29
33
* @param string $dn The user's DN
30
34
* @param string $password The associated password
35
+ *
36
+ * @throws AlreadyExistsException When the connection can't be created because of an LDAP_ALREADY_EXISTS error
37
+ * @throws ConnectionTimeoutException When the connection can't be created because of an LDAP_TIMEOUT error
38
+ * @throws InvalidCredentialsException When the connection can't be created because of an LDAP_INVALID_CREDENTIALS error
31
39
*/
32
40
public function bind ($ dn = null , $ password = null );
33
41
}
You can’t perform that action at this time.
0 commit comments