Skip to content

Commit 5b19a72

Browse files
committed
Fix
1 parent bf14f4a commit 5b19a72

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Plugin.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ public function process(Event $event): void
217217
private function constraintIntoString(ConstraintInterface $constraint): string
218218
{
219219
return sprintf(
220-
'%s%s && %s%s',
220+
'%s%s, %s%s',
221221
$constraint->getLowerBound()->isInclusive() ? '>=' : '>',
222222
$constraint->getLowerBound()->getVersion(),
223223
$constraint->getUpperBound()->isInclusive() ? '<=' : '<',

0 commit comments

Comments
 (0)