Currently, it seems that anonymous classes are not supported (or fully supported ?).
<?php
$foo = new class {
public $bar;
public function doFoo(): void
{
}
};
neither the property bar and method doFoo are recognized ? Using latest phpactor (from develop branch).
Currently, it seems that anonymous classes are not supported (or fully supported ?).
neither the property
barand methoddoFooare recognized ? Using latest phpactor (from develop branch).