. */ namespace SP\Domain\Auth\Ports; use SP\Providers\Auth\AuthInterface; use SP\Providers\Auth\Ldap\LdapAuthData; /** * Class LdapBase * * @extends AuthInterface */ interface LdapAuthInterface extends AuthInterface { public const ACCOUNT_NO_GROUPS = 702; public const ACCOUNT_EXPIRED = 701; }