Skip to content

Commit

Permalink
@PER-CS2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
realodix committed Aug 2, 2024
1 parent 1fbffdb commit 4fc1968
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/RuleSet/Sets/Relax.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ final class Relax extends AbstractRuleSet
*/
public function rules(): array
{
return array_merge((new Laravel)->rules(), $this->mainRules());
return $this->mainRules();
}

/**
Expand All @@ -25,6 +25,8 @@ public function rules(): array
public function mainRules(): array
{
return [
'@PER-CS2.0' => true,

'align_multiline_comment' => true,
'attribute_empty_parentheses' => true,
'class_reference_name_casing' => true,
Expand Down

0 comments on commit 4fc1968

Please sign in to comment.