in src/datetime/_Private/ZonedBuilder.php [20:38]
public function __construct(
DateTime\Zone $timezone,
int $year,
int $month,
int $day,
int $hours,
int $minutes,
int $seconds,
int $nanoseconds,
) {
$this->timezone = $timezone;
$this->year = $year;
$this->month = $month;
$this->day = $day;
$this->hours = $hours;
$this->minutes = $minutes;
$this->seconds = $seconds;
$this->nanoseconds = $nanoseconds;
}