protected static function builderFromParts()

in src/datetime/DateTime/Zoned.php [256:276]


  protected static function builderFromParts(
    Zone $timezone,
    int $year,
    int $month,
    int $day,
    int $hours,
    int $minutes,
    int $seconds,
    int $nanoseconds,
  ): Builder<this> {
    return new _DateTime\ZonedBuilder(
      $timezone,
      $year,
      $month,
      $day,
      $hours,
      $minutes,
      $seconds,
      $nanoseconds,
    );
  }