setStart() public method

public setStart ( mixed $_start )
$_start mixed
コード例 #1
0
ファイル: JsonCue.php プロジェクト: captioning/captioning
 /**
  * @param mixed $_start
  * @return $this
  */
 public function setStart($_start)
 {
     parent::setStart($_start);
     if ($this->stop) {
         $this->duration = $this->stop - $this->start;
     }
     return $this;
 }