phpantom_lsp 0.7.0

Fast PHP language server with deep type intelligence. Generics, Laravel, PHPStan annotations. Ready in an instant.
Documentation
// test: $this context inside class method resolves own members
// feature: completion
// Adapted from phpactor WorseClassMemberCompletorTest patterns
// expect: doWork(
// expect: name
---
<?php

class Service
{
    public string $name;

    public function doWork(): void {}

    public function run(): void
    {
        $this-><>
    }
}