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
The following code:
<?php var_dump(Reflection::getModifierNames(ReflectionProperty::IS_READONLY));
Resulted in this output:
array(0) { }
But I expected this output instead:
array(1) { [0]=> string(8) "readonly" }
PHP 8.1
No response
The text was updated successfully, but these errors were encountered:
Fixed bug phpGH-8943 Reflection::getModifiersNames() with readonly mo…
0b0017c
…difier
Yeah, apparently just an oversight.
Sorry, something went wrong.
Fixed bug GH-8943 Reflection::getModifiersNames() with readonly modifier
c650e67
Merge branch 'PHP-8.1'
4dd66b8
* PHP-8.1: Fixed bug GH-8943 Reflection::getModifiersNames() with readonly modifier
Fixed by #8944
No branches or pull requests
Description
The following code:
Resulted in this output:
But I expected this output instead:
PHP Version
PHP 8.1
Operating System
No response
The text was updated successfully, but these errors were encountered: