phpantom_lsp 0.7.0

Fast PHP language server with deep type intelligence. Generics, Laravel, PHPStan annotations. Ready in an instant.
Documentation
// 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-><>