in src/datetime/_Private/HasParts.php [146:159]
final public function withSeconds(
int $seconds,
): DateTime\Builder<T> {
return static::builderFromParts(
$this->timezone,
$this->year,
$this->month,
$this->day,
$this->hours,
$this->minutes,
$seconds,
$this->nanoseconds,
);
}