summaryrefslogtreecommitdiffstats
path: root/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/OrType.php
blob: ff586f422121423ead84876a087916f7140a607b (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\OrType.
 */

namespace jamesiarmes\PhpEws\Type;

/**
 * Represents a search expression that performs a logical OR on the search
 * expression that it contains.
 *
 * Or will return true if any of its children return true. Or must have two or
 * more children.
 *
 * @package php-ews\Type
 */
class OrType extends MultipleOperandBooleanExpressionType
{

}