We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 63d886f commit e9f7769Copy full SHA for e9f7769
src/Symfony/Component/Ldap/Adapter/ExtLdap/Connection.php
@@ -25,9 +25,9 @@
25
*/
26
class Connection extends AbstractConnection
27
{
28
- private const LDAP_INVALID_CREDENTIALS = '0x31';
29
- private const LDAP_TIMEOUT = '0x55';
30
- private const LDAP_ALREADY_EXISTS = '0x44';
+ private const LDAP_INVALID_CREDENTIALS = 0x31;
+ private const LDAP_TIMEOUT = 0x55;
+ private const LDAP_ALREADY_EXISTS = 0x44;
31
32
/** @var bool */
33
private $bound = false;
0 commit comments