Use elseif instead of else { if {
parent
0daaa1a902
commit
83159dc153
|
@ -274,10 +274,8 @@ class Pool
|
||||||
if (isset($this->packageByExactName[$name])) {
|
if (isset($this->packageByExactName[$name])) {
|
||||||
$candidates = array_merge($candidates, $this->packageByExactName[$name]);
|
$candidates = array_merge($candidates, $this->packageByExactName[$name]);
|
||||||
}
|
}
|
||||||
} else {
|
} elseif (isset($this->packageByName[$name])) {
|
||||||
if (isset($this->packageByName[$name])) {
|
$candidates = array_merge($candidates, $this->packageByName[$name]);
|
||||||
$candidates = array_merge($candidates, $this->packageByName[$name]);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
$matches = $provideMatches = array();
|
$matches = $provideMatches = array();
|
||||||
|
|
Loading…
Reference in New Issue