Skip to content

Commit

Permalink
No need to use final
Browse files Browse the repository at this point in the history
  • Loading branch information
realodix committed Jul 2, 2024
1 parent cd5f7ad commit d01c81a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ You can easily create your own rule set by extending the [`AbstractRuleSet`](src

use Realodix\Relax\RuleSet\AbstractRuleSet;

final class MyRuleSet extends AbstractRuleSet
class MyRuleSet extends AbstractRuleSet
{
// This method is optional. If not implemented, Relax will use
// the class name itself as the ruleset name.
Expand Down
2 changes: 1 addition & 1 deletion tests/Fixtures/RuleSetFile.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

use Realodix\Relax\RuleSet\AbstractRuleSet;

final class RuleSetFile extends AbstractRuleSet
class RuleSetFile extends AbstractRuleSet
{
public function rules(): array
{
Expand Down
2 changes: 1 addition & 1 deletion tests/Fixtures/RuleSetWithSetNameFile.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

use Realodix\Relax\RuleSet\AbstractRuleSet;

final class RuleSetWithSetNameFile extends AbstractRuleSet
class RuleSetWithSetNameFile extends AbstractRuleSet
{
public function name(): string
{
Expand Down

0 comments on commit d01c81a

Please sign in to comment.