Open benjam-es opened 3 years ago
I currently use the plugin with a key binding to import the class I have my cursor on which imports this:
use App\Models\User;
Is it possible to have my cursor on a function (which my IDE shows is from an external class) and import that like this:
use function Some\Class\formatText;
enabling me to then use formatText($input);
formatText($input);
I currently use the plugin with a key binding to import the class I have my cursor on which imports this:
use App\Models\User;
Is it possible to have my cursor on a function (which my IDE shows is from an external class) and import that like this:
use function Some\Class\formatText;
enabling me to then use
formatText($input);