-
-
Notifications
You must be signed in to change notification settings - Fork 69
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
Support new PHP 8.4 syntaxes #734
Comments
DanielEScherzer
added a commit
to DanielEScherzer/PHP_CodeSniffer
that referenced
this issue
Feb 19, 2025
11 tasks
jrfnl
pushed a commit
that referenced
this issue
Feb 21, 2025
Update File::getMemberProperties() to report when a property is marked as final. Update existing tests (which are all for non-final properties) to expect that the property not be marked as final, and add a new test case for a final that should be, and is, marked as final. Part of #734
jrfnl
pushed a commit
that referenced
this issue
Feb 21, 2025
Update File::getMemberProperties() to report when a property is marked as final. Update existing tests (which are all for non-final properties) to expect that the property not be marked as final, and add a new test case for a final that should be, and is, marked as final. Part of #734
jrfnl
pushed a commit
that referenced
this issue
Feb 21, 2025
Update File::getMemberProperties() to report when a property is marked as final. Update existing tests (which are all for non-final properties) to expect that the property not be marked as final, and add a new test case for a final that should be, and is, marked as final. Part of #734
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
PHP 8.4 introduces new syntaxes for which it should be verified if the Tokenizer needs updates and/or whether any sniffs need updating.
Action list
Notes:
To Do
Tokens
class - @DanielEScherzer PHP 8.4 | Add tokenization of asymmetric visibility #871getMemberProperties()
,getMethodParameters()
(for constructor property promotion)These updates should include special handling for the abbreviated form.
This needs investigation, but I imagine the
AbstractScopeSniff
and theAbstractVariableSniff
might need updates.final
propertiesfinal
properties #907getMemberProperties()
,getMethodParameters()
(for constructor property promotion) - @DanielEScherzer,getMemberProperties()
PR PHP 8.4 | Report final properties inFile::getMemberProperties()
#834abstract
propertiesgetMemberProperties()
,getMethodParameters()
(for constructor property promotion)getMemberProperties()
,getMethodParameters()
(for constructor property promotion)getMemberProperties()
getMemberProperties()
getMemberProperties()
getMethodParameters()
getMethodParameters()
getMethodParameters()
?Done
Nothing yet.
No action needed
@jrfnl I've reviewed and ran tests with this change at the time as it isn't a new syntax, but a change to an existing syntax with a high probability to break existing sniffs. Based on the final implementation of the change, no changes to support this in PHPCS were needed.
Contribution Process
If anyone familiar with the PHP and PHPCS tokenizer wants to start work on any of these, please leave a comment in this ticket to claim an action item.
If you are not familiar with either tokenizer, please spare yourself the pain 😉
New custom PHPCS tokens may be needed (like for supporting property hooks). If that's the case, please open a separate issue with a detailed proposal on how to handle the syntax, what alternatives have been considered, what the consequences would be and why the proposed option should be accepted. Please open this issue before creating a PR.
If anyone needs it, here are some examples of earlier proposals for supporting PHP syntaxes from before PHP 8.4:
yield from
tokenization #529 (comment)Timeline
For anyone coming to this ticket to see when syntax support for PHP 8.4 syntaxes is expected, please do NOT spam this ticket with repeated comments asking for a timeline.
It will be ready when it's ready and whatever is ready will be included in a release forthwith.
Seriously, to add syntax support for PHP 8.4, a completely silly amount of work will be needed and people need to sleep once in a while as well (and should get a life), so please be patient.
To quote myself from #731 (comment):
The text was updated successfully, but these errors were encountered: