You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If I have a class definition without a namespace (in the top directory of my autoload dir), the namespace shoud be \ in expand_fqcn and find_use, instead I get \class_name as namespace:
I.e. when the cursor is on system in system::doSystemStuff() I get \system\system::doSystemStuff() instead of the expected \system::doSystemStuff(). Or use system\system instead of use system.
The text was updated successfully, but these errors were encountered:
If I have a class definition without a namespace (in the top directory of my autoload dir), the namespace shoud be
\
inexpand_fqcn
andfind_use
, instead I get\class_name
as namespace:I.e. when the cursor is on
system
insystem::doSystemStuff()
I get\system\system::doSystemStuff()
instead of the expected\system::doSystemStuff()
. Oruse system\system
instead ofuse system
.The text was updated successfully, but these errors were encountered: