1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
// test: @mixin provides access to mixed-in class properties // feature: completion // Adapted from phpactor reflection/mixin_properties.test // expect: foo --- <?php class A { public string $foo; } /** * @mixin A */ class B { } $b = new B(); $b-><>