-
Notifications
You must be signed in to change notification settings - Fork 7
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 7.4 deprecates parent for classes without parent #20
Comments
Any update on this issue? |
We can't move forward on PHP upgrades because of this issue. PHP 7.3 will be deprecated at the of this year, can you please update your code? |
I opened a pull request that should fix this issue By removing the line
the case of |
Thank you @gusdemayo! I was creating a PR with the exact same change! |
Is this project still being maintained? |
Line 32 of ATConfig.php:
if($n == '_ivars') { return parent::__get($n); }
However, the class is declared without a parent:
When using this class with PHP 7.4, it results in an error.
Recommend returning "null" instead of the call to the parent's __get() function.
The text was updated successfully, but these errors were encountered: