We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
2.1.0
8.x
Hey @JJJ,
I believe this change b8fdfc6 in release/2.1.0 is having unintended side effects in PHP 8.x
release/2.1.0
In 8.x the $columns value remains the same as the first time it is retrieved. In 7.4 the $columns value updates with new class instances.
$columns
7.4
You can see the difference here: https://onlinephp.io/c/b236e
I believe it's because of this: https://wiki.php.net/rfc/static_variable_inheritance
The text was updated successfully, but these errors were encountered:
JJJ
No branches or pull requests
Hey @JJJ,
I believe this change b8fdfc6 in
release/2.1.0
is having unintended side effects in PHP8.x
In
8.x
the$columns
value remains the same as the first time it is retrieved.In
7.4
the$columns
value updates with new class instances.You can see the difference here: https://onlinephp.io/c/b236e
I believe it's because of this: https://wiki.php.net/rfc/static_variable_inheritance
The text was updated successfully, but these errors were encountered: