setStop() public method

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