Use hexadecimal numerals instead of hexadecimals in strings to represent error codes.

This commit is contained in:
Arek Bochinski 2020-07-16 08:17:31 -04:00 committed by Fabien Potencier
parent 63d886f7cb
commit e9f7769111
1 changed files with 3 additions and 3 deletions

View File

@ -25,9 +25,9 @@ use Symfony\Component\OptionsResolver\OptionsResolver;
*/
class Connection extends AbstractConnection
{
private const LDAP_INVALID_CREDENTIALS = '0x31';
private const LDAP_TIMEOUT = '0x55';
private const LDAP_ALREADY_EXISTS = '0x44';
private const LDAP_INVALID_CREDENTIALS = 0x31;
private const LDAP_TIMEOUT = 0x55;
private const LDAP_ALREADY_EXISTS = 0x44;
/** @var bool */
private $bound = false;