I'm using EasyAdmin which fileds are defined like this (example TextField):
final class TextField implements FieldInterface
{
use FieldTrait;
// ....
}
FieldInterface has basically only the new static function while importat methods are in the FieldTrait itself.
It seems that trait methods not inferred correctly. Is that a problem of the PHP language server itself or the VSCode extension itself?

I'm using EasyAdmin which fileds are defined like this (example
TextField):FieldInterfacehas basically only thenewstatic function while importat methods are in theFieldTraititself.It seems that trait methods not inferred correctly. Is that a problem of the PHP language server itself or the VSCode extension itself?