1
0
mirror of https://github.com/furyfire/trueskill.git synced 2025-03-21 09:08:04 +00:00
Files
trueskill/PHPSkills/Teams.php

19 lines
301 B
PHP
Raw Normal View History

<?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;
}
}
?>