1<?php 2/** 3 * This file is part of the FreeDSx LDAP package. 4 * 5 * (c) Chad Sikorra <Chad.Sikorra@gmail.com> 6 * 7 * For the full copyright and license information, please view the LICENSE 8 * file that was distributed with this source code. 9 */ 10 11namespace FreeDSx\Ldap\Search\Filter; 12 13/** 14 * Represents an equality match filter. RFC 4511, 4.5.1.7.1 15 * 16 * @author Chad Sikorra <Chad.Sikorra@gmail.com> 17 */ 18class EqualityFilter implements FilterInterface 19{ 20 use AttributeValueAssertionTrait; 21 22 protected const CHOICE_TAG = 3; 23 24 protected const FILTER_TYPE = self::FILTER_EQUAL; 25} 26