-
-
Notifications
You must be signed in to change notification settings - Fork 0
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
fix: class_attributes_separation ruleset #280
Conversation
WalkthroughThe Changes
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (invoked as PR comments)
Additionally, you can add CodeRabbit Configration File (
|
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #280 +/- ##
=========================================
Coverage 56.37% 56.37%
Complexity 19 19
=========================================
Files 3 3
Lines 243 243
=========================================
Hits 137 137
Misses 106 106 ☔ View full report in Codecov by Sentry. |
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.
Actionable comments posted: 1
Review Details
Configuration used: CodeRabbit UI
Review profile: CHILL
Files selected for processing (1)
- src/RuleSets/ExtendedPERSet.php (2 hunks)
Additional Context Used
GitHub Check Runs (1)
codecov/patch failure (1)
src/RuleSets/ExtendedPERSet.php: [warning] 81-81: src/RuleSets/ExtendedPERSet.php#L81
Added line #L81 was not covered by tests
Additional comments not posted (1)
src/RuleSets/ExtendedPERSet.php (1)
81-81
: Update to 'case' property in 'class_attributes_separation' to 'only_if_meta' aligns with the intended stricter separation rules.
@@ -78,7 +78,7 @@ | |||
'method' => 'one', | |||
'property' => 'one', | |||
'trait_import' => 'none', | |||
'case' => 'one', | |||
'case' => 'only_if_meta', |
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.
Tip
Codebase Verification
The added line 'case' => 'only_if_meta'
in src/RuleSets/ExtendedPERSet.php
is not covered by tests. No references to this rule were found in the test files.
src/RuleSets/ExtendedPERSet.php
src/RuleSets/DefaultSet.php
Analysis chain
The added line #L81 was not covered by tests.
Scripts Executed
The following scripts were executed for the analysis:
Script:
#!/bin/bash
# Description: Verify if the new rule 'case' => 'only_if_meta' is covered by tests.
# Test: Search for tests covering the 'case' rule in 'class_attributes_separation'.
rg --type php $'class_attributes_separation.*case.*only_if_meta' tests/
Length of output: 72
Script:
#!/bin/bash
# Description: Broaden the search to find any references to 'class_attributes_separation' in the tests.
# Step 1: Search for any references to 'class_attributes_separation' in the tests.
rg --type php 'class_attributes_separation' tests/
# Step 2: If found, search within those files for 'case' => 'only_if_meta'.
for file in $(rg --files-with-matches --type php 'class_attributes_separation' tests/); do
rg --type php 'case.*only_if_meta' "$file"
done
Length of output: 123
Script:
#!/bin/bash
# Description: Verify the definition and usage of 'class_attributes_separation' and search for any related tests.
# Step 1: Search for the definition of 'class_attributes_separation' in the codebase.
rg --type php 'class_attributes_separation' src/
# Step 2: Search for any related tests that might indirectly cover the new rule.
rg --type php 'only_if_meta' tests/
Length of output: 238
Summary by CodeRabbit
only_if_meta
instead ofone
.