1 | <?php |
||
15 | class ArrayOfStringsType extends ArrayType |
||
16 | { |
||
17 | /** |
||
18 | * Contains a single string. |
||
19 | * |
||
20 | * @since Exchange 2007 |
||
21 | * |
||
22 | * @var string[] |
||
23 | */ |
||
24 | public $String = array(); |
||
25 | |||
26 | /** |
||
27 | * Properly converts the value of this type to a string. |
||
28 | * |
||
29 | * @return string |
||
30 | * |
||
31 | * @todo Determine if this is needed. |
||
32 | */ |
||
33 | public function __toString() |
||
37 | } |
||
38 |