First TwoPlayerTrueSkillCalculator unit test passed

This commit is contained in:
Jeff Moser
2010-08-28 22:05:41 -04:00
commit 12a02b8403
41 changed files with 1909 additions and 0 deletions

18
PHPSkills/Teams.php Normal file
View File

@ -0,0 +1,18 @@
<?php
namespace Moserware\Skills;
class Teams
{
public static function concat(/*variable arguments*/)
{
$args = \func_get_args();
$result = array();
foreach ($args as $currentTeam) {
$result[] = $currentTeam;
}
return $result;
}
}
?>