. */ namespace SP\Providers\Auth\Ldap; /** * Interface LdapCode * * @package SP\Providers\Auth\Ldap */ interface LdapCode { public const SUCCESS = 0; public const OPERATIONS_ERROR = 1; public const AUTH_METHOD_NOT_SUPPORTED = 7; public const STRONGER_AUTH_REQUIRED = 8; public const CONFIDENTIALITY_REQUIRED = 13; public const NO_SUCH_OBJECT = 32; public const INVALID_CREDENTIALS = 49; public const FILTER_ERROR = 87; }