Home
last modified time | relevance | path

Searched refs:matchRule (Results 1 – 2 of 2) sorted by relevance

/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Control/Sorting/
H A DSortKey.php109 * @param null|string $matchRule
112 public static function ascending(string $attribute, ?string $matchRule = null)
114 return new self($attribute, false, $matchRule);
121 * @param null|string $matchRule
124 public static function descending(string $attribute, ?string $matchRule = null)
126 return new self($attribute, true, $matchRule);
111 ascending(string $attribute, string $matchRule = null) global() argument
123 descending(string $attribute, string $matchRule = null) global() argument
H A DSortingControl.php103 $matchRule = null;
112 $matchRule = $keyItem->getValue();
127 $sortKeys[] = new SortKey($attrName, $useReverseOrder, $matchRule);