Skip to content

Curly braced variables in strings break class scanning #28

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
adawolfa opened this issue Jul 11, 2023 · 0 comments
Closed

Curly braced variables in strings break class scanning #28

adawolfa opened this issue Jul 11, 2023 · 0 comments

Comments

@adawolfa
Copy link

Version: 4.0.0

Bug Description

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

<?php

print "Hello {$World}!";

class Bar // This class won't be found.
{
    function fn()
    {
    }
}

Issue is not present in v3.

@dg dg closed this as completed in 236ecdc Sep 26, 2023
dg added a commit that referenced this issue Sep 26, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant