PHP 8 Promotion de propriété du constructeur
class CustomerDTO
{
public function __construct(
public string $name,
public string $email,
public DateTimeImmutable $birth_date,
) {}
}
Cheerful Copperhead