- var_dump: documentation ( source)
<?php
class Foo {
readonly string $bar;
public function __construct(
readonly int $promotedProp
) {
$this->bar = 'bar';
var_dump($this->promotedProp, $this->bar);
}
}
new Foo(10);