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
// assume there's an annotation called Foo with a public field called "fields"// file StatusEnum.phpclass StatusEnum
{
publicconstACCEPTED = 1; // shows nothing on ctrl+click or find usages
}
// file MyClass.phpuseStatusEnum;
/** * @Foo(fields={"status"={StatusEnum::ACCEPTED}}) */class MyClass
{
}
It clearly should show usage.
The text was updated successfully, but these errors were encountered:
The following code doesn't show any usages.
It clearly should show usage.
The text was updated successfully, but these errors were encountered: