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
Describe the bug
Our project has some @see tags. Most of developers use PHPStorm and they use the next syntax: @see AnotherClass::method() or @see AnotherClass::$privateProperty.
This way doesn't work for me, but works this way: @see Full\Path\To\AnotherClass::method() or @see Full\Path\To\AnotherClass::$privateProperty.
To Reproduce
Use different classes.
It doesn't work if you try to go to the declaration or try to get the method description.
namespaceMyApp;
class A
{
publicfunctionm1() {}
}
class B
{
/** * @see A::m1() */publicfunctionm2() {}
}
But it works.
namespaceMyApp;
class A
{
publicfunctionm1() {}
}
class B
{
/** * @see MyApp\A::m1() */publicfunctionm2() {}
}
Expected behavior
Both options works.
Screenshots
Platform and version
PHP Intelephense v1.12.6
VS Code Version: 1.94.2
Node.js: 20.16.0
OS: Linux x64 6.8.0-48-generic (Ubuntu 22.04)
The text was updated successfully, but these errors were encountered:
Describe the bug
Our project has some
@see
tags. Most of developers use PHPStorm and they use the next syntax:@see AnotherClass::method()
or@see AnotherClass::$privateProperty
.This way doesn't work for me, but works this way:
@see Full\Path\To\AnotherClass::method()
or@see Full\Path\To\AnotherClass::$privateProperty
.To Reproduce
Use different classes.
It doesn't work if you try to go to the declaration or try to get the method description.
But it works.
Expected behavior
Both options works.
Screenshots
Platform and version
PHP Intelephense v1.12.6
VS Code Version: 1.94.2
Node.js: 20.16.0
OS: Linux x64 6.8.0-48-generic (Ubuntu 22.04)
The text was updated successfully, but these errors were encountered: