* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace FreeDSx\Ldap\Search\Filter; /** * Represents an approximate attribute value assertion (ie. phonetic/like). RFC 4511, 4.5.1.7.6 * * @author Chad Sikorra */ class ApproximateFilter implements FilterInterface { use AttributeValueAssertionTrait; protected const CHOICE_TAG = 8; protected const FILTER_TYPE = self::FILTER_APPROX; }