Phue\TimePattern\RandomizedTime::__construct PHP Method

__construct() public method

Instantiate
public __construct ( string $time, integer $randomWithinSeconds = null )
$time string Time value
$randomWithinSeconds integer Random within seconds
    public function __construct($time, $randomWithinSeconds = null)
    {
        $this->date = new DateTime((string) $time);
        $this->date->setTimeZone(new DateTimeZone('UTC'));
        $this->randomWithinSeconds = $randomWithinSeconds;
    }