Skip to content

Commit

Permalink
rectify
Browse files Browse the repository at this point in the history
  • Loading branch information
TomasVotruba committed Jan 31, 2025
1 parent 158f4d6 commit 97c5818
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Rules/Symfony/NoConstructorAndRequiredTogetherRule.php
Original file line number Diff line number Diff line change
Expand Up @@ -49,12 +49,12 @@ public function processNode(Node $node, Scope $scope): array
return [];
}

$ruleError = RuleErrorBuilder::message(self::ERROR_MESSAGE)
$identifierRuleError = RuleErrorBuilder::message(self::ERROR_MESSAGE)
->identifier(SymfonyRuleIdentifier::NO_CONSTRUCT_AND_REQUIRED)
->build();

return [
$ruleError,
$identifierRuleError,
];
}

Expand Down

0 comments on commit 97c5818

Please sign in to comment.