1
0
Fork 0

Fix formatting of constraint output

pull/2604/merge
Jordi Boggiano 2014-12-29 19:27:35 +00:00
parent 9a4a0244bf
commit 82b84f7a0a
1 changed files with 1 additions and 1 deletions

View File

@ -78,6 +78,6 @@ class MultiConstraint implements LinkConstraintInterface
$constraints[] = $constraint->__toString();
}
return '['.implode($this->conjunctive ? ', ' : ' | ', $constraints).']';
return '['.implode($this->conjunctive ? ' ' : ' || ', $constraints).']';
}
}