11 lines
178 B
PHP
11 lines
178 B
PHP
|
<?php
|
||
|
namespace nur\ldap;
|
||
|
|
||
|
use nur\b\ICloseable;
|
||
|
|
||
|
interface ILdapWalker extends ICloseable {
|
||
|
function resetSearch(LdapSearch $search): ILdapWalker;
|
||
|
|
||
|
function next(): bool;
|
||
|
}
|