Hi team, I'm using VS code and purchased the tool. But I found below codes will be formatted as second one.
from:
protected static function newFactory(): Factory
{
return UserFactory::new();
}
to:
protected static function newFactory(): Factory
{
return UserFactory::new ();
}
There are extra space between new
and ()
, and I don't see any options can disable it~