for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace PhpEws\DataType;
use PhpEws\DataType;
/**
* Physical address key type
*/
class PhysicalAddressKeyType extends DataType
{
* Business physical address type
*
* @var string
const BUSINESS = 'Business';
* Home physical address type
const HOME = 'Home';
* Other physical address type
const OTHER = 'Other';
* Value of the desired mapping. Should be one of the constants from the
* PhysicalAddressKeyType class.
public $_;
* Returns the value of this object as a string
* @return string
public function __toString()
return $this->_;
}