-
Notifications
You must be signed in to change notification settings - Fork 180
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
Deprecated dynamic property in extensions #323
Comments
I have created a PR that will address this issue. |
any movement on this? |
@delboy1978uk No. |
Good day. I would really like to use the library on Php 8.2)) |
Hi @reinink, do we have any chance to resolve this issue and achieve PHP 8.2 compatibility in the foreseeable future? |
Guys, just add |
#329 - this should be fixed here. |
Currently, the
ExtensionInterface
requires only one method (register
). In L102 from Func.php , the script tries to assign theTemplate $template
to the extension's variable$template
. If strict mode is enabled, you will receive a Deprecated warning:This can be fixed by adding the following to the extension:
A better fix would be:
MasterExtension
class with the variable defined within it.setTemplate
method to theExtensionInterface
and allow the user to handle this themselves.The text was updated successfully, but these errors were encountered: