First time of no blatant syntax errors

This commit is contained in:
Jeff Moser
2010-09-18 15:24:36 -04:00
parent e434696b44
commit 4748e7453a
4 changed files with 41 additions and 26 deletions

View File

@ -23,7 +23,8 @@ class TeamPerformancesToTeamPerformanceDifferencesLayer extends TrueSkillFactorG
$this->addLayerFactor($this->createTeamPerformanceToDifferenceFactor($strongerTeam, $weakerTeam, currentDifference));
// REVIEW: Does it make sense to have groups of one?
$this->getOutputVariablesGroups()[] = $currentDifference;
$outputVariablesGroup = $this->getOutputVariablesGroups();
$outputVariablesGroup[] = $currentDifference;
}
}