Skip to content

Commit e9f7769

Browse files
a-zbfabpot
authored andcommitted
Use hexadecimal numerals instead of hexadecimals in strings to represent error codes.
1 parent 63d886f commit e9f7769

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Symfony/Component/Ldap/Adapter/ExtLdap/Connection.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@
2525
*/
2626
class Connection extends AbstractConnection
2727
{
28-
private const LDAP_INVALID_CREDENTIALS = '0x31';
29-
private const LDAP_TIMEOUT = '0x55';
30-
private const LDAP_ALREADY_EXISTS = '0x44';
28+
private const LDAP_INVALID_CREDENTIALS = 0x31;
29+
private const LDAP_TIMEOUT = 0x55;
30+
private const LDAP_ALREADY_EXISTS = 0x44;
3131

3232
/** @var bool */
3333
private $bound = false;

0 commit comments

Comments
 (0)