Eloquent\Phony\Clock\SystemClock::time PHP Method

time() public method

Get the current time.
public time ( ) : float
return float The current time.
    public function time()
    {
        $microtime = $this->microtime;
        return $microtime(true);
    }