Phue\TimePattern\Timer::__toString PHP Method

__toString() public method

To string
public __toString ( ) : string
return string Formatted date
    public function __toString()
    {
        $timer = 'PT' . date('H:i:s', $this->seconds);
        if ($this->repeat !== null) {
            $timer = sprintf('R%1$02d/%2$s', $this->repeat, $timer);
        }
        return $timer;
    }