File tree Expand file tree Collapse file tree 5 files changed +15
-6
lines changed Expand file tree Collapse file tree 5 files changed +15
-6
lines changed Original file line number Diff line number Diff line change 15
15
* ConnectionException is throw if binding to ldap can not be established.
16
16
*
17
17
* @author Grégoire Pineau <lyrixx@lyrixx.info>
18
+ *
19
+ * @internal
18
20
*/
19
21
class ConnectionException extends \RuntimeException
20
22
{
Original file line number Diff line number Diff line change 15
15
* LdapException is throw if php ldap module is not loaded.
16
16
*
17
17
* @author Grégoire Pineau <lyrixx@lyrixx.info>
18
+ *
19
+ * @internal
18
20
*/
19
21
class LdapException extends \RuntimeException
20
22
{
Original file line number Diff line number Diff line change 18
18
* @author Grégoire Pineau <lyrixx@lyrixx.info>
19
19
* @author Francis Besset <francis.besset@gmail.com>
20
20
* @author Charles Sarrazin <charles@sarraz.in>
21
+ *
22
+ * @internal
21
23
*/
22
24
class LdapClient implements LdapClientInterface
23
25
{
Original file line number Diff line number Diff line change 18
18
*
19
19
* @author Grégoire Pineau <lyrixx@lyrixx.info>
20
20
* @author Charles Sarrazin <charles@sarraz.in>
21
+ *
22
+ * @internal
21
23
*/
22
24
interface LdapClientInterface
23
25
{
24
- const LDAP_ESCAPE_FILTER = 0x01 ;
25
- const LDAP_ESCAPE_DN = 0x02 ;
26
-
27
26
/**
28
27
* Return a connection bound to the ldap.
29
28
*
Original file line number Diff line number Diff line change 1
1
Ldap Component
2
- =============
2
+ ==============
3
3
4
4
A Ldap client for PHP on top of PHP's ldap extension.
5
5
6
- This component also provides a stub for the missing
7
- ` ldap_escape ` function in PHP versions lower than 5.6.
6
+ Disclaimer
7
+ ----------
8
+
9
+ This component is currently marked as internal, as it
10
+ still needs some work. Breaking changes will be introduced
11
+ in the next minor version of Symfony.
8
12
9
13
Documentation
10
14
-------------
You can’t perform that action at this time.
0 commit comments