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 DayOfWeekType type.
*/
class DayOfWeekType extends DataType
{
* Represents Sunday.
*
* @var string
const SUNDAY = 'Sunday';
* Represents Monday.
const MONDAY = 'Monday';
* Represents Tuesday.
const TUESDAY = 'Tuesday';
* Represents Wednesday.
const WEDNESDAY = 'Wednesday';
* Represents Thursday.
const THURSDAY = 'Thursday';
* Represents Friday.
const FRIDAY = 'Friday';
* Represents Saturday.
const SATURDAY = 'Saturday';
* Represents a day of the week.
const DAY = 'Day';
* Represents a weekday.
const WEEKDAY = 'Weekday';
* Represents a weekend day.
const WEEKENDDAY = 'WeekendDay';
* Element value.
public $_;
* Returns the value of this object as a string.
* @return string
public function __toString()
return $this->_;
}