phpantom_lsp 0.7.0

Fast PHP language server with deep type intelligence. Generics, Laravel, PHPStan annotations. Ready in an instant.
Documentation
// test: parent:: completion shows parent class methods
// feature: completion
// Adapted from phpactor WorseClassMemberCompletorTest 'parent::'
// expect: baz(
---
<?php

abstract class Bar {
    public function baz(): string {}
}

class Foobar extends Bar
{
    const FOOBAR = 'foobar';
    const BARFOO = 'barfoo';

    public function bar(): string {
        parent::<>
    }
}