Im currently testing the premium functions of the vs-code extension.
It is a major disappointment that there appears to be no auto-import support when using “use groups.”
I prefere my usings like that:
use framework\dto\{myclass1, myclass2, myclass3};
use framework\enum\{myclass4};
But if im doing this, your tool only provides a 'quick fix' to add the fqn but not to add a use-statement.
I used to be an Intelephense user, and it worked as intended there.
When I wrote 'mycla' and autocompleted 'myclass5' it dose this:
use framework\dto\{myclass1, myclass2, myclass3};
use framework\enum\{myclass4, myclass5};