Merge pull request #37 from igorw/arrayloader-fix
ArrayLoader should not use require content for all other propertiespull/40/merge
commit
52ea639079
|
@ -88,7 +88,7 @@ class ArrayLoader
|
||||||
if (isset($config[$type])) {
|
if (isset($config[$type])) {
|
||||||
$method = 'set'.ucfirst($description);
|
$method = 'set'.ucfirst($description);
|
||||||
$package->{$method}(
|
$package->{$method}(
|
||||||
$this->loadLinksFromConfig($package->getName(), $description, $config['require'])
|
$this->loadLinksFromConfig($package->getName(), $description, $config[$type])
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue