We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 84867b7 commit 0c0a3e9Copy full SHA for 0c0a3e9
src/Symfony/Component/Console/Application.php
@@ -573,6 +573,10 @@ public function find($name)
573
return $this->get($abbrevs[$searchName][0]);
574
}
575
576
+ if (isset($abbrevs[$searchName]) && in_array($searchName, $abbrevs[$searchName])) {
577
+ return $this->get($searchName);
578
+ }
579
+
580
if (isset($abbrevs[$searchName]) && count($abbrevs[$searchName]) > 1) {
581
$suggestions = $this->getAbbreviationSuggestions($abbrevs[$searchName]);
582
0 commit comments