Phue\TimePattern\AbsoluteTime::__construct PHP Method

__construct() public method

Instantiate
public __construct ( string $time )
$time string Time value
    public function __construct($time)
    {
        $this->date = new DateTime((string) $time);
        $this->date->setTimeZone(new DateTimeZone('UTC'));
    }