phpantom_lsp 0.7.0

Fast PHP language server with deep type intelligence. Generics, Laravel, PHPStan annotations. Ready in an instant.
Documentation
// test: static property accessible from instance variable via :: access
// feature: completion
// Adapted from phpactor WorseClassMemberCompletorTest 'Static property with previous arrow accessor'

// expect: $foo
---
<?php

class Foobar
{
    public static $foo;

    /**
     * @var Foobar
     */
    public $me;
}

$foobar = new Foobar();
$foobar->me::<>