Home
last modified time | relevance | path

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

/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Search/
H A DFilters.php25 use FreeDSx\Ldap\Search\Filter\SubstringFilter; alias
145 * @return SubstringFilter
147 …ng(string $attribute, ?string $startsWith, ?string $endsWith, string ...$contains): SubstringFilter
149 return new SubstringFilter($attribute, $startsWith, $endsWith, ...$contains);
157 * @return SubstringFilter
159 public static function contains(string $attribute, string ...$values): SubstringFilter
161 return new SubstringFilter($attribute, null, null, ...$values);
169 * @return SubstringFilter
171 public static function endsWith(string $attribute, string $value): SubstringFilter
173 return new SubstringFilter($attribute, null, $value);
[all …]
H A DFilterParser.php19 use FreeDSx\Ldap\Search\Filter\SubstringFilter; alias
345 * @return SubstringFilter
348 protected function getSubstringFilterObject(string $attribute, string $value): SubstringFilter
350 $filter = new SubstringFilter($attribute);
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Protocol/Factory/
H A DFilterFactory.php28 use FreeDSx\Ldap\Search\Filter\SubstringFilter; alias
45 4 => SubstringFilter::class,
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Search/Filter/
H A DSubstringFilter.php38 class SubstringFilter implements FilterInterface class
198 * @return SubstringFilter