Skip to content

Commit

Permalink
Fix: Use ConfigurableFixerInterface
Browse files Browse the repository at this point in the history
  • Loading branch information
localheinz committed May 4, 2021
1 parent 009aa38 commit a37749c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/Unit/RuleSet/AbstractRuleSetTestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ final public function testRuleSetDoesNotConfigureRulesUsingDeprecatedConfigurati
return $ruleConfiguration;
}

if (!$fixer instanceof Fixer\ConfigurationDefinitionFixerInterface) {
if (!$fixer instanceof Fixer\ConfigurableFixerInterface) {
return $ruleConfiguration;
}

Expand Down
2 changes: 1 addition & 1 deletion test/Unit/RuleSet/ExplicitRuleSetTestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ final public function testRuleSetConfiguresAllRulesThatAreConfigurableAndNotDepr
return $ruleConfiguration;
}

if (!$fixer instanceof Fixer\ConfigurationDefinitionFixerInterface) {
if (!$fixer instanceof Fixer\ConfigurableFixerInterface) {
return $ruleConfiguration;
}

Expand Down

0 comments on commit a37749c

Please sign in to comment.