Performance/WPQueryParams: prevent false positives for 'exclude' with get_users() #784
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
As reported in #672 and #729, the
get_users()
function also takes an array parameter which takes an'exclude'
key. That key is not our target, so should not be flagged.This commit adds a hard-coded exception specifically for that situation.
If at a later point in time, more situations which need exceptions would be discovered, this solution can be made more flexible, but for now, there is no need (or insight into where the flexibility should be).
As the
AbstractArrayAssignmentRestrictionsSniff::callback()
method does not have access to the$stackPtr
, the logic which can be used in thecallback()
is limited. Also see the review notes from upstream WordPress/WordPress-Coding-Standards#2266, which basically already pointed out this exact problem.To get round this, I'm overloading the
process_token()
method to set a temporary$in_get_users
property, which can then be read out in thecallback()
method to be used in the actual determination of whether the exception should be made or not.Includes tests.
Fixes #672