<?php class A { public function __construct(final string $foo) { } } $a = new A('test'); $c = new ReflectionClass($a); foreach ($c->getProperties() as $prop) { var_dump($prop->isFinal()); var_dump($prop->isPromoted()); } var_dump($a->foo);
You have javascript disabled. You will not be able to edit any code.