Example #1
0
 /**
  * @param Timecode $timecode
  *
  * @return Timecode
  */
 public function subtract(Timecode $timecode) : Timecode
 {
     $this->fromSeconds($this->getSeconds() - $timecode->getSeconds());
     return $this;
 }