Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ondrejmirtes committed Jun 6, 2024
1 parent bf14f4a commit 5b19a72
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Plugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ public function process(Event $event): void
private function constraintIntoString(ConstraintInterface $constraint): string
{
return sprintf(
'%s%s && %s%s',
'%s%s, %s%s',
$constraint->getLowerBound()->isInclusive() ? '>=' : '>',
$constraint->getLowerBound()->getVersion(),
$constraint->getUpperBound()->isInclusive() ? '<=' : '<',
Expand Down

0 comments on commit 5b19a72

Please sign in to comment.