<?php class Foo { readonly string $bar; public function __construct( readonly int $promotedProp ) { $this->bar = 'bar'; var_dump($this->promotedProp, $this->bar); } } new Foo(10);
You have javascript disabled. You will not be able to edit any code.