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
Whenever there's a curly braced variable in a string ("{$var}"), $level in scanPhp() is increased twice. As a result, any class within the same file following such token is ignored.
Steps To Reproduce
<?phpprint"Hello {$World}!";
class Bar // This class won't be found.
{
functionfn()
{
}
}
Issue is not present in v3.
The text was updated successfully, but these errors were encountered:
Version: 4.0.0
Bug Description
Whenever there's a curly braced variable in a string (
"{$var}"
),$level
inscanPhp()
is increased twice. As a result, any class within the same file following such token is ignored.Steps To Reproduce
Issue is not present in v3.
The text was updated successfully, but these errors were encountered: