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

namespace jamesiarmes\PhpEws\Type;

use \jamesiarmes\PhpEws\Type;

/**
 * Base class for string types.
 *
 * @package php-ews\Type
 */
abstract class StringType extends Type
{
    /**
     * Value of the element.
     *
     * @var string
     */
    public $_;
}