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 a logical 'and' filter. RFC 4511, 4.5.1 15 * 16 * @author Chad Sikorra <Chad.Sikorra@gmail.com> 17 */ 18class AndFilter implements FilterContainerInterface, \IteratorAggregate, \Countable 19{ 20 use FilterContainerTrait; 21 22 protected const FILTER_OPERATOR = self::OPERATOR_AND; 23 24 protected const CHOICE_TAG = 0; 25} 26