<?php interface Foo { public int $a { get; } } $ref = new ReflectionClass(Foo::class); var_dump($ref->getProperty('a')->isAbstract()); var_dump($ref->getProperty('a')->isVirtual());
You have javascript disabled. You will not be able to edit any code.