public function withHours()

in src/datetime/Time.php [248:255]


  public function withHours(int $hours): this {
    return self::fromParts(
      $hours,
      $this->minutes,
      $this->seconds,
      $this->nanoseconds,
    );
  }