summaryrefslogtreecommitdiffstats
path: root/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/TwoOperandExpressionType.php
diff options
context:
space:
mode:
Diffstat (limited to 'modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/TwoOperandExpressionType.php')
-rw-r--r--modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/TwoOperandExpressionType.php24
1 files changed, 24 insertions, 0 deletions
diff --git a/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/TwoOperandExpressionType.php b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/TwoOperandExpressionType.php
new file mode 100644
index 00000000..ecfcc665
--- /dev/null
+++ b/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/TwoOperandExpressionType.php
@@ -0,0 +1,24 @@
+<?php
+/**
+ * Contains \jamesiarmes\PhpEws\Type\TwoOperandExpressionType.
+ */
+
+namespace jamesiarmes\PhpEws\Type;
+
+/**
+ * Base class for search expressions with two operands.
+ *
+ * @package php-ews\Type
+ */
+abstract class TwoOperandExpressionType extends SearchExpressionType
+{
+ /**
+ * Represents either a property or a constant value to be used when
+ * comparing with another property.
+ *
+ * @since Exchange 2007
+ *
+ * @var \jamesiarmes\PhpEws\Type\FieldURIOrConstantType
+ */
+ public $FieldURIOrConstant;
+}