Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
realodix committed Jul 30, 2024
1 parent 5603bda commit 1751a0e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Config.php
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public static function create($ruleSet = null)
$ruleSet = 'Relax';
}

$relaxRuleset = 'Realodix\\Relax\\RuleSet\\Sets\\'.ucfirst($ruleSet);
$relaxRuleset = 'Realodix\Relax\RuleSet\Sets\\'.ucfirst($ruleSet);

if (! class_exists($relaxRuleset)) {
throw new RulesetNotFoundException($ruleSet);
Expand Down
2 changes: 1 addition & 1 deletion src/RuleSet/Sets/RelaxPlus.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public function mainRules(): array
// https://github.com/doctrine/coding-standard/blob/3e88327/lib/Doctrine/ruleset.xml#L227
'api', 'author', 'category', 'copyright', 'created', 'license', 'package', 'since',
'subpackage', 'version',
// https://github.com/laminas/laminas-coding-standard/blob/9825280/src/LaminasCodingStandard/ruleset.xml#L883
// https://github.com/laminas/laminas-coding-standard/blob/2ddabf7/src/LaminasCodingStandard/ruleset.xml#L885
'expectedException', 'expectedExceptionCode', 'expectedExceptionMessage', 'expectedExceptionMessageRegExp',
],
],
Expand Down

0 comments on commit 1751a0e

Please sign in to comment.