예제 #1
0
 /**
  * Returns a copy of this {@code LocalDateTime} with the hour-of-day altered.
  * <p>
  * This instance is immutable and unaffected by this method call.
  *
  * @param int $hour the hour-of-day to set in the result, from 0 to 23
  * @return LocalDateTime a {@code LocalDateTime} based on this date-time with the requested hour, not null
  * @throws DateTimeException if the hour value is invalid
  */
 public function withHour($hour)
 {
     $newTime = $this->time->withHour($hour);
     return $this->_with($this->date, $newTime);
 }
예제 #2
0
 /**
  * Returns a copy of this {@code OffsetTime} with the hour-of-day altered.
  * <p>
  * The offset does not affect the calculation and will be the same in the result.
  * <p>
  * This instance is immutable and unaffected by this method call.
  *
  * @param int $hour the hour-of-day to set in the result, from 0 to 23
  * @return OffsetTime an {@code OffsetTime} based on this time with the requested hour, not null
  * @throws DateTimeException if the hour value is invalid
  */
 public function withHour($hour)
 {
     return $this->_with($this->time->withHour($hour), $this->offset);
 }