phpantom_lsp 0.7.0

Fast PHP language server with deep type intelligence. Generics, Laravel, PHPStan annotations. Ready in an instant.
Documentation
// test: @mixin with generic parameter resolves template type
// feature: completion
// Adapted from phpactor reflection/mixin_generic.test
// expect: toBeTrue(
---
<?php

/**
 * @template TValue
 */
class A
{
    public function toBeTrue(): bool {}
}

/**
 * @mixin A<string>
 */
class B
{
}

$b = new B();
$b-><>