Skip to content

Commit 97c5818

Browse files
committed
rectify
1 parent 158f4d6 commit 97c5818

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Rules/Symfony/NoConstructorAndRequiredTogetherRule.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,12 +49,12 @@ public function processNode(Node $node, Scope $scope): array
4949
return [];
5050
}
5151

52-
$ruleError = RuleErrorBuilder::message(self::ERROR_MESSAGE)
52+
$identifierRuleError = RuleErrorBuilder::message(self::ERROR_MESSAGE)
5353
->identifier(SymfonyRuleIdentifier::NO_CONSTRUCT_AND_REQUIRED)
5454
->build();
5555

5656
return [
57-
$ruleError,
57+
$identifierRuleError,
5858
];
5959
}
6060

0 commit comments

Comments
 (0)