. */ namespace SP\Domain\Auth\Ports; use SP\Domain\Auth\Dtos\LdapCheckResults; use SP\Domain\Auth\Providers\Ldap\LdapException; /** * Class LdapCheckService * * @package SP\Domain\Import\Services */ interface LdapCheckService { /** * @throws LdapException */ public function getObjects(bool $includeGroups = true): LdapCheckResults; /** * @throws LdapException */ public function getObjectsByFilter(string $filter): LdapCheckResults; }