* * 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 equality match filter. RFC 4511, 4.5.1.7.1 * * @author Chad Sikorra */ class EqualityFilter implements FilterInterface { use AttributeValueAssertionTrait; protected const CHOICE_TAG = 3; protected const FILTER_TYPE = self::FILTER_EQUAL; }