phpantom_lsp 0.7.0

Fast PHP language server with deep type intelligence. Generics, Laravel, PHPStan annotations. Ready in an instant.
Documentation
// test: enum implementing interface resolves interface methods
// feature: completion
// Adapted from phpactor enum/gh-2220.test
// expect: foo(
---
<?php

interface Foo
{
    public function foo(): string;
}

enum Test: string implements Foo
{
    case A = 'a';

    public function foo(): string
    {
        return 'bar';
    }
}

Test::A-><>