Captioning\Format\JsonCue::setStart PHP Method

setStart() public method

public setStart ( mixed $_start )
$_start mixed
    public function setStart($_start)
    {
        parent::setStart($_start);
        if ($this->stop) {
            $this->duration = $this->stop - $this->start;
        }
        return $this;
    }