public function withNanoseconds()

in src/datetime/Time.php [296:303]


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