8000 bug #37594 Use hexadecimal numerals instead of hexadecimals in string… · symfony/symfony@3619661 · GitHub
[go: up one dir, main page]

Skip to content

Commit 3619661

Browse files
committed
bug #37594 Use hexadecimal numerals instead of hexadecimals in strings to repres… (arekzb)
This PR was submitted for the master branch but it was merged into the 4.4 branch instead. Discussion ---------- Use hexadecimal numerals instead of hexadecimals in strings to repres… Use hexadecimal numerals instead of hexadecimals in strings to represent error codes. | Q | A | ------------- | --- | Branch? | master | Bug fix? | yes | New feature? | no | Deprecations? | no | Tickets | Fix #37577 , #36327 | License | MIT Class constants are now hexadecimal numerals instead of hexadecimals in strings. Commits ------- e9f7769 Use hexadecimal numerals instead of hexadecimals in strings to represent error codes.
2 parents 63d886f + e9f7769 commit 3619661

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)
0