-
-
Notifications
You must be signed in to change notification settings - Fork 83
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
Add support for readonly
classes
#147
Conversation
f4e843b
to
f8b0360
Compare
f8b0360
to
0f49852
Compare
Hello @Ocramius, I have went through PR and found this PR is supporting PHP8.2, Hence My PR will not be required #151 |
@IonBazan could you rebase on 4.8.x ? |
0f49852
to
29c93c0
Compare
Signed-off-by: Ion Bazan <[email protected]>
1231f15
to
76aa40b
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Rebased, thanks @IonBazan!
This new test limits itself to verifying the semantics around `final` class creation, and it isn't really a problem to rely on the deprecated API in here (for now). Signed-off-by: Marco Pivetta <[email protected]>
readonly
classes
Description
This change adds support for
readonly
classes generation (PHP 8.2 and up).It also adds support for
final
classes generation fromClassReflection
(not sure why it was skipped earlier).Added PHP 8.2 to the build matrix and
composer.json
- tests are passing.See: #142