1
0
Fork 0

Coding style compliance

pull/2644/head
Olivier Laviale 2014-01-29 14:36:34 +01:00
parent 46776c8e23
commit 17278999ba
1 changed files with 5 additions and 5 deletions

10
src/Composer/Autoload/AutoloadGenerator.php Normal file → Executable file
View File

@ -629,13 +629,13 @@ FOOTER;
$computing = array();
$computed = array();
$compute_importance = function($name) use(&$compute_importance, &$computing, &$computed, $usageList) {
# reusing computed importance
$computeImportance = function($name) use(&$computeImportance, &$computing, &$computed, $usageList) {
// reusing computed importance
if (isset($computed[$name])) {
return $computed[$name];
}
# canceling circular dependency
// canceling circular dependency
if (isset($computing[$name])) {
return 0;
}
@ -645,7 +645,7 @@ FOOTER;
if (isset($usageList[$name])) {
foreach ($usageList[$name] as $user) {
$weight -= 1 - $compute_importance($user);
$weight -= 1 - $computeImportance($user);
}
}
@ -658,7 +658,7 @@ FOOTER;
$weightList = array();
foreach ($packages as $name => $package) {
$weight = $compute_importance($name);
$weight = $computeImportance($name);
$weightList[$name] = $weight;
}