for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace PhpEws\DataType;
use PhpEws\DataType;
/**
* Definition of the ArrayOfStringsType type
*/
class ArrayOfStringsType extends DataType
{
* String property
*
* @var string
public $String;
* Properly converts the value of this type to a string.
* @return string
public function __toString()
return $this->String;
}