-
Notifications
You must be signed in to change notification settings - Fork 715
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
missing fix for PHP 8.4 on StringEval::populate() #1087
Comments
I too got a bunch of deprecation warnings about the Implicitly marking parameter $parent as nullable is deprecated
I'll try to swing back and make a PR to fix this but if anyone else can do so first so much the better. |
The notices occur when there is another optional parameter of mixed type. However, PHP 7 didn't support the |
To avoid dropping support for older versions of PHP |
That would require duplicating all classes that have this issue. That's a lot of code duplication. |
I found this error blow.
This error disappeared by fixing this line like below.
smarty/src/Resource/StringEval.php
Line 34 in 8fd949a
On this fix, I referred this PR.
#1043
The text was updated successfully, but these errors were encountered: