final public function withNanoseconds()

in src/datetime/_Private/HasParts.php [161:174]


  final public function withNanoseconds(
    int $nanoseconds,
  ): DateTime\Builder<T> {
    return static::builderFromParts(
      $this->timezone,
      $this->year,
      $this->month,
      $this->day,
      $this->hours,
      $this->minutes,
      $this->seconds,
      $nanoseconds,
    );
  }