Fix variable name

main
Jordi Boggiano 5 years ago
parent 936933fa66
commit d381b3a781
No known key found for this signature in database
GPG Key ID: 7BBD42C429EC80BC

@ -313,9 +313,11 @@ class ComposerRepository extends ArrayRepository implements ConfigurableReposito
}
}
}
// add aliases of matched packages even if they did not match the constraint
foreach ($candidates as $candidate) {
if ($candidate instanceof AliasPackage) {
if (isset($result[spl_object_hash($candidate->getAliasOf())])) {
if (isset($matches[spl_object_hash($candidate->getAliasOf())])) {
$matches[spl_object_hash($candidate)] = $candidate;
}
}

Loading…
Cancel
Save