plugin
plugin copied to clipboard
[Feature Request/Question]: Exclude import suggestions of _laravel_idea directory
Feature Description
Hello, Well I am confused that something is wrong in my side or it's just like that!
I generate helper code by Ctrl+Shift+. and well, If i try to use for example Arr:get(...) on a new file i get a list of suggested classes to import which for me is contains Arr and Illuminate\Support\Arr which the second one is the correct import.
Is there any way to remove Import suggestions that are based in _laravel_idea directory?
They both are correct.
\Arr:: is a standard alias for \Illuminate\Support\Arr::
@adelf
Correct, while you're typing Arr if you press Enter then that will use \Arr
But if you completely write Arr::get(''); without pressing that Enter, it will just add a use Arr; and stays Arr::get('');