Throw when repo consistency is in question

main
Jordi Boggiano 3 years ago
parent 0dce0f80f1
commit c8de960018
No known key found for this signature in database
GPG Key ID: 7BBD42C429EC80BC

@ -889,6 +889,13 @@ EOT
// Check for similar names/typos
$similar = $this->findSimilar($name);
if ($similar) {
if (in_array($name, $similar, true)) {
throw new \InvalidArgumentException(sprintf(
"Could not find package %s. It was however found via repository search, which indicates a consistency issue with the repository.",
$name
));
}
throw new \InvalidArgumentException(sprintf(
"Could not find package %s.\n\nDid you mean " . (count($similar) > 1 ? 'one of these' : 'this') . "?\n %s",
$name,

Loading…
Cancel
Save