<?php class Foo { public function __construct( public string $a, public string $b, private string $c, ) { } } var_dump(new Foo('a', 'b', 'c'));
You have javascript disabled. You will not be able to edit any code.