Skip to content
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

Fix namespaces for PHP 8.4 #112

Merged
merged 4 commits into from
Mar 19, 2025
Merged

Conversation

jlherren
Copy link
Contributor

Fixes relative namespaces handling for PHP 8.4, which has an unfortunate breaking change about how ReflectionFunction::getNamespaceName() works for closures.

It also fixes namespace resolution in files with multiple namespaces, where only the use statements in the current namespace must be considered.

Fixes #111

ReflectionFunction::getNamespaceName() no longer returns a meaningful
namespace for closures starting with PHP 8.4.
Especially for resolving relative namespaces in PHP 8.4.
The only case not handled is to ignore 'use' statements that appear
after usage within the same namespace.
@jlherren
Copy link
Contributor Author

The only situation not handled is when using a name before the use statement in the same namespace. Nobody does that and even PhpStorm gets this wrong.

Finally, I left ReflectionClosure::$classes as is for backward compatibility, since the class is not final.

The unused 'use' statements are essential for the tests.
@taylorotwell taylorotwell merged commit b352cf0 into laravel:2.x Mar 19, 2025
11 checks passed
@jlherren jlherren deleted the fix-namespaces branch March 19, 2025 20:10
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

Successfully merging this pull request may close these issues.

Wrong resolution of relative namespace in PHP 8.4
2 participants