public function withSeconds()

in src/datetime/Time.php [280:287]


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