예제 #1
0
 /**
  * Returns a copy of this {@code OffsetTime} with the specified number of seconds subtracted.
  * <p>
  * This subtracts the specified number of seconds from this time, returning a new time.
  * The calculation wraps around midnight.
  * <p>
  * This instance is immutable and unaffected by this method call.
  *
  * @param int $seconds the seconds to subtract, may be negative
  * @return OffsetTime an {@code OffsetTime} based on this time with the seconds subtracted, not null
  */
 public function minusSeconds($seconds)
 {
     return $this->_with($this->time->minusSeconds($seconds), $this->offset);
 }