Home
last modified time | relevance | path

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

/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Search/
H A DFilters.php21 use FreeDSx\Ldap\Search\Filter\OrFilter; alias
47 * @return OrFilter
49 public static function or(FilterInterface ...$filters): OrFilter
51 return new OrFilter(...$filters);
H A DFilterParser.php17 use FreeDSx\Ldap\Search\Filter\OrFilter; alias
142 $filter = $operator === FilterInterface::OPERATOR_AND ? new AndFilter() : new OrFilter();
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Protocol/Factory/
H A DFilterFactory.php25 use FreeDSx\Ldap\Search\Filter\OrFilter; alias
41 1 => OrFilter::class,
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Search/Filter/
H A DOrFilter.php18 class OrFilter implements FilterContainerInterface, \IteratorAggregate, \Countable class