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