-
-
Notifications
You must be signed in to change notification settings - Fork 18
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
php 8.4 namespace incompatibility #97
Comments
Please check #98 |
That should solve the issue. Can you publish a beta version for me to test? |
In this case you can just apply git patch |
I tested the changes and everything is working well on php 8.4.2. Thanks. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Crunz version: 3.7.0
PHP version: 8.4+
Operating system type and version:
macOS, linux
Description
Globals are referencing the task namespace in php 8.4 in closure tasks. The same code works in php <= 8.3.
How to reproduce
Possible Solution
You can workaround the issue by adding a leading
\
to the globals, e.g.$soapClient = new \SoapClient()
Additional context
laravel/serializable-closure#90
The text was updated successfully, but these errors were encountered: