Avoid choking on non-string constraints, fixes #5807

main
Jordi Boggiano 8 years ago
parent e32c09e13a
commit f320c67534

@ -232,6 +232,9 @@ class ArrayLoader implements LoaderInterface
{
$res = array();
foreach ($links as $target => $constraint) {
if (!is_string($constraint)) {
throw new \UnexpectedValueException('Link constraint in '.$source.' '.$description.' > '.$target.' should be a string, got '.gettype($constraint) . ' (' . var_export($constraint, true) . ')');
}
if ('self.version' === $constraint) {
$parsedConstraint = $this->versionParser->parseConstraints($sourceVersion);
} else {

Loading…
Cancel
Save