Home
last modified time | relevance | path

Searched refs:AndFilter (Results 1 – 4 of 4) sorted by relevance

/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Search/
H A DFilters.php15 use FreeDSx\Ldap\Search\Filter\AndFilter; alias
38 * @return AndFilter
40 public static function and(FilterInterface ...$filters): AndFilter
42 return new AndFilter(...$filters);
H A DFilterParser.php15 use FreeDSx\Ldap\Search\Filter\AndFilter; alias
147 $filter = $operator === FilterInterface::OPERATOR_AND ? new AndFilter() : new OrFilter();
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Protocol/Factory/
H A DFilterFactory.php18 use FreeDSx\Ldap\Search\Filter\AndFilter; alias
41 0 => AndFilter::class,
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Search/Filter/
H A DAndFilter.php22 class AndFilter implements FilterContainerInterface, IteratorAggregate, Countable class