summaryrefslogtreecommitdiffstats
path: root/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/AndType.php
blob: 5e47b4013f4ee098f666d221aff1d28ad6389a20 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?php
/**
 * Contains \jamesiarmes\PhpEws\Type\AndType.
 */

namespace jamesiarmes\PhpEws\Type;

/**
 * Represents a search expression that allows you to perform a Boolean AND
 * operation between two or more search expressions.
 *
 * The result of the AND operation is true if all the search expressions
 * contained within the And element are true.
 *
 * @package php-ews\Type
 */
class AndType extends MultipleOperandBooleanExpressionType
{

}