mirror of
https://github.com/composer/composer
synced 2025-05-11 01:22:54 +00:00
Correction of wrong variable name.
This commit is contained in:
parent
b3d91cab02
commit
61c66b98a8
1 changed files with 2 additions and 2 deletions
|
@ -192,8 +192,8 @@ class PearRepository extends ArrayRepository
|
|||
$depsData['require'] = $this->parseDependenciesOptions($deps['required']);
|
||||
}
|
||||
|
||||
if (isset($depsData['optional'])) {
|
||||
$depsData['recommend'] = $this->parseDependenciesOptions($depsData['optional']);
|
||||
if (isset($deps['optional'])) {
|
||||
$depsData['recommend'] = $this->parseDependenciesOptions($deps['optional']);
|
||||
}
|
||||
|
||||
return $depsData;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue