<?php class DTO { public function __construct( public int $a, public int $b, public int $c, public int $d, public int $e, public int $f, ) {} } $dto = new DTO(1, 2, 3, 4, 5, 6); var_dump($dto); $copy = new DTO(...(array_values(array_merge(get_object_vars($dto), ['d' => 43])))); var_dump($copy);
You have javascript disabled. You will not be able to edit any code.